mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-15 20:50:24 +00:00
15 lines
274 B
Erlang
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, []}
|
|
]}.
|