aboutsummaryrefslogtreecommitdiffstats
path: root/examples/chunked_hello_world
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2012-10-11 20:52:29 +0200
committerLoïc Hoguin <[email protected]>2012-10-11 20:52:29 +0200
commit160063497cade2c5334cc06859a43afec7183e78 (patch)
tree4b96d429b6f18aab2a1bc654588b8c3014c80708 /examples/chunked_hello_world
parent7b3d9943a9ead6624e639cb0229e608795cbc700 (diff)
downloadcowboy-160063497cade2c5334cc06859a43afec7183e78.tar.gz
cowboy-160063497cade2c5334cc06859a43afec7183e78.tar.bz2
cowboy-160063497cade2c5334cc06859a43afec7183e78.zip
Start crypto also in the examples and documentation
Diffstat (limited to 'examples/chunked_hello_world')
-rw-r--r--examples/chunked_hello_world/src/chunked_hello_world.erl1
1 files changed, 1 insertions, 0 deletions
diff --git a/examples/chunked_hello_world/src/chunked_hello_world.erl b/examples/chunked_hello_world/src/chunked_hello_world.erl
index 5c13f0e..78c771f 100644
--- a/examples/chunked_hello_world/src/chunked_hello_world.erl
+++ b/examples/chunked_hello_world/src/chunked_hello_world.erl
@@ -8,6 +8,7 @@
%% API.
start() ->
+ ok = application:start(crypto),
ok = application:start(ranch),
ok = application:start(cowboy),
ok = application:start(chunked_hello_world).