aboutsummaryrefslogtreecommitdiffstats
path: root/examples/echo_post/src/echo_post.app.src
blob: 92c71ff422d62bc89b58e252ac40fcc7a0c11082 (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_post, [
	{description, "Cowboy POST echo example."},
	{vsn, "1"},
	{modules, []},
	{registered, [echo_post_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {echo_post_app, []}},
	{env, []}
]}.