diff options
author | Loïc Hoguin <[email protected]> | 2012-12-20 14:40:22 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-12-20 14:40:22 +0100 |
commit | a07d063fd8fc8a1cfadcb35cc89e190695773fe8 (patch) | |
tree | b1f9c4540b8ecdc43538945f6371177b48d3b1b5 /examples/cookie/src/cookie_app.erl | |
parent | 659ca05c546ed8b537fe0d36cf5520ad0bc62a0f (diff) | |
download | cowboy-a07d063fd8fc8a1cfadcb35cc89e190695773fe8.tar.gz cowboy-a07d063fd8fc8a1cfadcb35cc89e190695773fe8.tar.bz2 cowboy-a07d063fd8fc8a1cfadcb35cc89e190695773fe8.zip |
Add cookie example
Diffstat (limited to 'examples/cookie/src/cookie_app.erl')
-rw-r--r-- | examples/cookie/src/cookie_app.erl | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/examples/cookie/src/cookie_app.erl b/examples/cookie/src/cookie_app.erl new file mode 100644 index 0000000..195d6b6 --- /dev/null +++ b/examples/cookie/src/cookie_app.erl @@ -0,0 +1,25 @@ +%% Feel free to use, reuse and abuse the code in this file. + +%% @private +-module(cookie_app). +-behaviour(application). + +%% API. +-export([start/2]). +-export([stop/1]). + +%% API. + +start(_Type, _Args) -> + Dispatch = [ + {'_', [ + {'_', toppage_handler, []} + ]} + ], + {ok, _} = cowboy:start_http(http, 100, [{port, 8080}], [ + {dispatch, Dispatch} + ]), + cookie_sup:start_link(). + +stop(_State) -> + ok. |