diff options
author | Loïc Hoguin <[email protected]> | 2012-08-27 11:50:35 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2012-08-27 11:50:35 +0200 |
commit | e4124de2c71564d37b3732ede0fe1542de1d6f99 (patch) | |
tree | 0e632d9eb44c848bfc4b9190251e7c8566c8debc /examples/static/src/static.erl | |
parent | 50e5a616dcaa765f0c795f565d361196823ed2fe (diff) | |
download | cowboy-e4124de2c71564d37b3732ede0fe1542de1d6f99.tar.gz cowboy-e4124de2c71564d37b3732ede0fe1542de1d6f99.tar.bz2 cowboy-e4124de2c71564d37b3732ede0fe1542de1d6f99.zip |
Switch to Ranch for connection handling
This is the first of many API incompatible changes.
You have been warned.
Diffstat (limited to 'examples/static/src/static.erl')
-rw-r--r-- | examples/static/src/static.erl | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/static/src/static.erl b/examples/static/src/static.erl index a542adb..c3f4035 100644 --- a/examples/static/src/static.erl +++ b/examples/static/src/static.erl @@ -8,5 +8,6 @@ %% API. start() -> + ok = application:start(ranch), ok = application:start(cowboy), ok = application:start(static). |