aboutsummaryrefslogtreecommitdiffstats
path: root/examples/rest_hello_world/src/rest_hello_world.app.src
blob: 0c786e88892b0d4cb83b6e2d8946d12d0dd9c73e (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_hello_world, [
	{description, "Cowboy REST Hello World example."},
	{vsn, "1"},
	{modules, []},
	{registered, [rest_hello_world_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {rest_hello_world_app, []}},
	{env, []}
]}.