aboutsummaryrefslogtreecommitdiffstats
path: root/examples/chunked_hello_world/src/chunked_hello_world.app.src
blob: 3bd75566a2026bb73508e02e7ff23c04c208a7fd (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, [chunked_hello_world_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {chunked_hello_world_app, []}},
	{env, []}
]}.