aboutsummaryrefslogtreecommitdiffstats
path: root/examples/chunked_hello_world/src/chunked_hello_world.app.src
blob: 1a6c03bbef6593d538922874efe32423089d6365 (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, chunked_hello_world, [
	{description, "Cowboy Chunked Hello World example."},
	{vsn, "1"},
	{modules, []},
	{registered, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {chunked_hello_world_app, []}},
	{env, []}
]}.