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

16 lines
277 B
Text
Raw Normal View History

2012-07-21 22:19:13 +02:00
%% Feel free to use, reuse and abuse the code in this file.
{application, echo_post, [
{description, "Cowboy POST echo example."},
{vsn, "1"},
{modules, []},
{registered, []},
{applications, [
kernel,
stdlib,
cowboy
]},
{mod, {echo_post_app, []}},
{env, []}
]}.