mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 12:40:25 +00:00
15 lines
356 B
Erlang
15 lines
356 B
Erlang
%% 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, []}
|
|
]}.
|