aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_hello_world/src/rest_hello_world.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/rest_hello_world/src/rest_hello_world.erl')
-rw-r--r--examples/rest_hello_world/src/rest_hello_world.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/rest_hello_world/src/rest_hello_world.erl b/examples/rest_hello_world/src/rest_hello_world.erl
new file mode 100644
index 0000000..7a63e41
--- /dev/null
+++ b/examples/rest_hello_world/src/rest_hello_world.erl
@@ -0,0 +1,12 @@
+%% 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(cowboy),
+ ok = application:start(rest_hello_world).