aboutsummaryrefslogtreecommitdiffstats
path: root/examples/hello_world/src/hello_world_sup.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-07-13 10:15:22 +0200
committerLoïc Hoguin <[email protected]>2012-07-13 10:15:22 +0200
commitb8a25b156cb0eb9a99ba4d204cf973e197d7b563 (patch)
tree898389b646fb091b8e0cf7798349e481ba406857 /examples/hello_world/src/hello_world_sup.erl
parent0c2e2224e372f01e6cf51a8e12d4856edb4cb8ac (diff)
downloadcowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.tar.gz
cowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.tar.bz2
cowboy-b8a25b156cb0eb9a99ba4d204cf973e197d7b563.zip
Add an Hello World example
Diffstat (limited to 'examples/hello_world/src/hello_world_sup.erl')
-rw-r--r--examples/hello_world/src/hello_world_sup.erl23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/hello_world/src/hello_world_sup.erl b/examples/hello_world/src/hello_world_sup.erl
new file mode 100644
index 0000000..01fbe3b
--- /dev/null
+++ b/examples/hello_world/src/hello_world_sup.erl
@@ -0,0 +1,23 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+%% @private
+-module(hello_world_sup).
+-behaviour(supervisor).
+
+%% API.
+-export([start_link/0]).
+
+%% supervisor.
+-export([init/1]).
+
+%% API.
+
+-spec start_link() -> {ok, pid()}.
+start_link() ->
+ supervisor:start_link({local, ?MODULE}, ?MODULE, []).
+
+%% supervisor.
+
+init([]) ->
+ Procs = [],
+ {ok, {{one_for_one, 10, 10}, Procs}}.