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