aboutsummaryrefslogtreecommitdiffstats
path: root/examples/upload/src/upload.app.src
blob: 232593552d6c45a34c55974d17aa2fd7c2e2f8c2 (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, upload, [
	{description, "Cowboy multipart upload example."},
	{vsn, "1"},
	{modules, []},
	{registered, [upload_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {upload_app, []}},
	{env, []}
]}.