aboutsummaryrefslogtreecommitdiffstats
path: root/examples/websocket/src/websocket_sup.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-01-30 14:50:21 +0100
committerLoïc Hoguin <[email protected]>2013-01-30 14:57:25 +0100
commitcc52343e9bdf96cf2c7dec43e6ecd74de0cab2e6 (patch)
treecbc21493f766494d3e997b847357ba222d28e817 /examples/websocket/src/websocket_sup.erl
parentd9b3727a628975dfcc8707e143e45884873e42cb (diff)
parentb8a0a8963b97387bd7b03b610107aa502c7c791d (diff)
downloadcowboy-cc52343e9bdf96cf2c7dec43e6ecd74de0cab2e6.tar.gz
cowboy-cc52343e9bdf96cf2c7dec43e6ecd74de0cab2e6.tar.bz2
cowboy-cc52343e9bdf96cf2c7dec43e6ecd74de0cab2e6.zip
Merge branch 'websocket-example' of https://github.com/pvieytes/cowboy
Diffstat (limited to 'examples/websocket/src/websocket_sup.erl')
-rw-r--r--examples/websocket/src/websocket_sup.erl23
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/websocket/src/websocket_sup.erl b/examples/websocket/src/websocket_sup.erl
new file mode 100644
index 0000000..40ef8e0
--- /dev/null
+++ b/examples/websocket/src/websocket_sup.erl
@@ -0,0 +1,23 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+%% @private
+-module(websocket_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}}.