aboutsummaryrefslogtreecommitdiffstats
path: root/examples/compress_response/src/compress_response.app.src
blob: 351208401daa9a9760eab522a0e219a02ddb6357 (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, compress_response, [
	{description, "Cowboy Compress Response example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {compress_response_app, []}},
	{env, []}
]}.