aboutsummaryrefslogtreecommitdiffstats
path: root/examples/markdown_middleware/src/markdown_middleware.app.src
blob: 56f26afe0f0ef02bfd540a471ec0466cb998c761 (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, markdown_middleware, [
	{description, "Cowboy static file handler example with middleware component."},
	{vsn, "1"},
	{modules, []},
	{registered, [markdown_middleware_sup]},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {markdown_middleware_app, []}},
	{env, []}
]}.