mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-16 05:00:24 +00:00
Add a GET echo example
This commit is contained in:
parent
dc759faf60
commit
370b3d9648
8 changed files with 129 additions and 0 deletions
15
examples/echo_get/src/echo_get.app.src
Normal file
15
examples/echo_get/src/echo_get.app.src
Normal file
|
@ -0,0 +1,15 @@
|
|||
%% 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, []}
|
||||
]}.
|
Loading…
Add table
Add a link
Reference in a new issue