aboutsummaryrefslogtreecommitdiffstats
path: root/examples/echo_post/src/echo_post.erl
diff options
context:
space:
mode:
Diffstat (limited to 'examples/echo_post/src/echo_post.erl')
-rw-r--r--examples/echo_post/src/echo_post.erl12
1 files changed, 12 insertions, 0 deletions
diff --git a/examples/echo_post/src/echo_post.erl b/examples/echo_post/src/echo_post.erl
new file mode 100644
index 0000000..0073a80
--- /dev/null
+++ b/examples/echo_post/src/echo_post.erl
@@ -0,0 +1,12 @@
+%% Feel free to use, reuse and abuse the code in this file.
+
+-module(echo_post).
+
+%% API.
+-export([start/0]).
+
+%% API.
+
+start() ->
+ ok = application:start(cowboy),
+ ok = application:start(echo_post).