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