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
2012-07-22 05:09:56 +02:00

15 lines
274 B
Erlang

%% 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, []}
]}.