aboutsummaryrefslogtreecommitdiffstats
path: root/examples/cookie/src/cookie.app.src
blob: b7098f0eb8d185002053e75aaa7d851bcf9be857 (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, []},
	{applications, [
		kernel,
		stdlib,
		cowboy,
		erlydtl
	]},
	{mod, {cookie_app, []}},
	{env, []}
]}.