aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_stream_response/src/rest_stream_response.app.src
blob: bf734ab5ee1bb384d03c4dc64fb5c923440da9e2 (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, rest_stream_response, [
	{description, "Cowboy REST with streaming."},
	{vsn, "1"},
	{modules, []},
	{registered, [rest_stream_response_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {rest_stream_response_app, []}},
	{env, []}
]}.