aboutsummaryrefslogtreecommitdiffstats
path: root/examples/markdown_middleware/src/markdown_middleware.app.src
blob: d5823998c6f3cb598635e0550a71d8e09e2a0f34 (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, []},
	{applications, [
		kernel,
		stdlib,
		cowboy
	]},
	{mod, {markdown_middleware_app, []}},
	{env, []}
]}.