aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cookie/src/cookie.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-07 21:58:03 +0200
committerLoïc Hoguin <[email protected]>2013-09-07 21:58:03 +0200
commit340f0a51123b476bca765b87d3f36411e896b5e3 (patch)
treeabeb1a43aa027f3b209c7b42a573b090b1a1deb1 /examples/cookie/src/cookie.erl
parent2f25c654b02d72a7c0017c20d11ed6a720d640c6 (diff)
downloadcowboy-340f0a51123b476bca765b87d3f36411e896b5e3.tar.gz
cowboy-340f0a51123b476bca765b87d3f36411e896b5e3.tar.bz2
cowboy-340f0a51123b476bca765b87d3f36411e896b5e3.zip
Convert the cookie example to a release
Diffstat (limited to 'examples/cookie/src/cookie.erl')
-rw-r--r--examples/cookie/src/cookie.erl15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/cookie/src/cookie.erl b/examples/cookie/src/cookie.erl
deleted file mode 100644
index 2626b39..0000000
--- a/examples/cookie/src/cookie.erl
+++ /dev/null
@@ -1,15 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
--module(cookie).
-
-%% API.
--export([start/0]).
-
-%% API.
-
-start() ->
- ok = application:start(crypto),
- ok = application:start(cowlib),
- ok = application:start(ranch),
- ok = application:start(cowboy),
- ok = application:start(cookie).