aboutsummaryrefslogtreecommitdiffstats
path: root/examples/eventsource/src/eventsource.app.src
blob: 002ea85eee1097075b9576737a89242140639a82 (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, eventsource, [
	{description, "Cowboy EventSource example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {eventsource_app, []}},
	{env, []}
]}.