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