0
Fork 0
mirror of https://github.com/ninenines/cowboy.git synced 2025-07-15 12:40:25 +00:00
cowboy/examples/echo_post/src/echo_post.app.src

15 lines
290 B
Erlang

%% Feel free to use, reuse and abuse the code in this file.
{application, echo_post, [
{description, "Cowboy POST echo example."},
{vsn, "1"},
{modules, []},
{registered, [echo_post_sup]},
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {echo_post_app, []}},
{env, []}
]}.