diff options
author | Loïc Hoguin <[email protected]> | 2013-02-16 15:11:56 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-02-16 15:11:56 +0100 |
commit | d305527e8871bf41c6362930848d93e42d523b29 (patch) | |
tree | b183ae379249e12ad3ff8681f6ec38c325934bba /examples/eventsource/src/eventsource_sup.erl | |
parent | 39af3010cbf0a2340e4424031f7397d52bf4b77d (diff) | |
parent | a302fe500736f3aa0dc36771db3077eb0752eebb (diff) | |
download | cowboy-d305527e8871bf41c6362930848d93e42d523b29.tar.gz cowboy-d305527e8871bf41c6362930848d93e42d523b29.tar.bz2 cowboy-d305527e8871bf41c6362930848d93e42d523b29.zip |
Merge branch 'eventsource_example' of git://github.com/acammack/cowboy
Diffstat (limited to 'examples/eventsource/src/eventsource_sup.erl')
-rw-r--r-- | examples/eventsource/src/eventsource_sup.erl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/eventsource/src/eventsource_sup.erl b/examples/eventsource/src/eventsource_sup.erl new file mode 100644 index 0000000..611b015 --- /dev/null +++ b/examples/eventsource/src/eventsource_sup.erl @@ -0,0 +1,23 @@ +%% Feel free to use, reuse and abuse the code in this file. + +%% @private +-module(eventsource_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}}. |