aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_hello_world/src/rest_hello_world.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-08 12:22:30 +0200
committerLoïc Hoguin <[email protected]>2013-09-08 12:22:30 +0200
commit81843414b00f3d1829db5f105206396985f1196c (patch)
treeeb4fe671fc005288b11a4d2c5f33ee0f287ef2ad /examples/rest_hello_world/src/rest_hello_world.erl
parent49acfce8b9d0af8cc87b9be7ba91ffde307596da (diff)
downloadcowboy-81843414b00f3d1829db5f105206396985f1196c.tar.gz
cowboy-81843414b00f3d1829db5f105206396985f1196c.tar.bz2
cowboy-81843414b00f3d1829db5f105206396985f1196c.zip
Convert the REST hello world example to a release
Diffstat (limited to 'examples/rest_hello_world/src/rest_hello_world.erl')
-rw-r--r--examples/rest_hello_world/src/rest_hello_world.erl15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/rest_hello_world/src/rest_hello_world.erl b/examples/rest_hello_world/src/rest_hello_world.erl
deleted file mode 100644
index afc221f..0000000
--- a/examples/rest_hello_world/src/rest_hello_world.erl
+++ /dev/null
@@ -1,15 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
--module(rest_hello_world).
-
-%% 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(rest_hello_world).