diff options
author | Loïc Hoguin <[email protected]> | 2013-01-30 22:13:31 +0100 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2013-01-30 22:13:31 +0100 |
commit | f96e20aef7cce6d47535ab63c36452f6c9e1c444 (patch) | |
tree | b6ae3cd187ebe6d6c2eb48819f4cd4be0253757f /examples/static_world/src/static_world.erl | |
parent | eaaa81cce693e6dbbe2a48a594cd4bcd424c0495 (diff) | |
download | cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.gz cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.tar.bz2 cowboy-f96e20aef7cce6d47535ab63c36452f6c9e1c444.zip |
Rename example 'static' to 'static_world' to avoid confusion
Diffstat (limited to 'examples/static_world/src/static_world.erl')
-rw-r--r-- | examples/static_world/src/static_world.erl | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/examples/static_world/src/static_world.erl b/examples/static_world/src/static_world.erl new file mode 100644 index 0000000..6425a99 --- /dev/null +++ b/examples/static_world/src/static_world.erl @@ -0,0 +1,14 @@ +%% Feel free to use, reuse and abuse the code in this file. + +-module(static_world). + +%% API. +-export([start/0]). + +%% API. + +start() -> + ok = application:start(crypto), + ok = application:start(ranch), + ok = application:start(cowboy), + ok = application:start(static_world). |