aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_basic_auth/src/rest_basic_auth.app.src
blob: d715b6a0373295834ca79f3c78c4b424539e9bb2 (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, rest_basic_auth, [
	{description, "Cowboy Basic HTTP Authorization example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {rest_basic_auth_app, []}},
	{env, []}
]}.