summaryrefslogtreecommitdiffstats
path: root/examples/clock/src/clock.app.src
blob: e4d9f29fd72278dab689f2ae41fd7cd65b729e70 (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, clock, [
	{description, "Bullet clock example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {clock_app, []}},
	{env, []}
]}.