aboutsummaryrefslogtreecommitdiffstats
path: root/examples/error_hook/src/error_hook.erl
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2013-09-08 11:30:47 +0200
committerLoïc Hoguin <[email protected]>2013-09-08 11:30:47 +0200
commit6b7b0efd24149d81df47b3241a989a6777bb486b (patch)
tree2e32d8f268546eacb38a19117f16c3021a2e80ba /examples/error_hook/src/error_hook.erl
parent57e6d1f4165134bc91fc7ccfc28c5b0a74824945 (diff)
downloadcowboy-6b7b0efd24149d81df47b3241a989a6777bb486b.tar.gz
cowboy-6b7b0efd24149d81df47b3241a989a6777bb486b.tar.bz2
cowboy-6b7b0efd24149d81df47b3241a989a6777bb486b.zip
Conver the error hook example to a release
Diffstat (limited to 'examples/error_hook/src/error_hook.erl')
-rw-r--r--examples/error_hook/src/error_hook.erl15
1 files changed, 0 insertions, 15 deletions
diff --git a/examples/error_hook/src/error_hook.erl b/examples/error_hook/src/error_hook.erl
deleted file mode 100644
index 2cfd5cf..0000000
--- a/examples/error_hook/src/error_hook.erl
+++ /dev/null
@@ -1,15 +0,0 @@
-%% Feel free to use, reuse and abuse the code in this file.
-
--module(error_hook).
-
-%% API.
--export([start/0]).
-
-%% API.
-
-start() ->
- ok = application:start(crypto),
- ok = application:start(cowlib),
- ok = application:start(ranch),
- ok = application:start(cowboy),
- ok = application:start(error_hook).