diff options
author | Adam Cammack <[email protected]> | 2013-02-16 02:21:54 -0600 |
---|---|---|
committer | Adam Cammack <[email protected]> | 2013-02-16 02:21:54 -0600 |
commit | f112cdf643c520bb6554a2d8efa882e8e904b984 (patch) | |
tree | 640ef3b6570c1359345cc8f98854936ca3a67540 /examples/web_server/src/web_server_sup.erl | |
parent | e3daf439da42283cf65faa3311ff73bb7ffe413b (diff) | |
download | cowboy-f112cdf643c520bb6554a2d8efa882e8e904b984.tar.gz cowboy-f112cdf643c520bb6554a2d8efa882e8e904b984.tar.bz2 cowboy-f112cdf643c520bb6554a2d8efa882e8e904b984.zip |
Add a web server example
Explore re-routing in middleware.
Diffstat (limited to 'examples/web_server/src/web_server_sup.erl')
-rw-r--r-- | examples/web_server/src/web_server_sup.erl | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/examples/web_server/src/web_server_sup.erl b/examples/web_server/src/web_server_sup.erl new file mode 100644 index 0000000..03f9f67 --- /dev/null +++ b/examples/web_server/src/web_server_sup.erl @@ -0,0 +1,23 @@ +%% Feel free to use, reuse and abuse the code in this file. + +%% @private +-module(web_server_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}}. |