aboutsummaryrefslogtreecommitdiffstats
path: root/examples/error_hook/src/error_hook.app.src
blob: 728fd3527a7556bc4daa4dd146c8ce2454d066de (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
%% Feel free to use, reuse and abuse the code in this file.

{application, error_hook, [
	{description, "Cowboy error handler example."},
	{vsn, "1"},
	{modules, []},
	{registered, [error_hook_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {error_hook_app, []}},
	{env, []}
]}.