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