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

16 lines
274 B
Text
Raw Normal View History

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