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