aboutsummaryrefslogtreecommitdiffstats
path: root/examples/echo_get/src/echo_get.app.src
blob: fd5646c0a76853ed5b068d3704b90ed6d28647a6 (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, echo_get, [
	{description, "Cowboy GET echo example."},
	{vsn, "1"},
	{modules, []},
	{registered, [echo_get_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {echo_get_app, []}},
	{env, []}
]}.