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