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

{application, cookie, [
	{description, "Cowboy Cookie example."},
	{vsn, "1"},
	{modules, []},
	{registered, [cookie_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy,
		erlydtl
	]},
	{mod, {cookie_app, []}},
	{env, []}
]}.