echo_post.app.src 277 B

123456789101112131415
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. {application, echo_post, [
  3. {description, "Cowboy POST echo example."},
  4. {vsn, "1"},
  5. {modules, []},
  6. {registered, []},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. cowboy
  11. ]},
  12. {mod, {echo_post_app, []}},
  13. {env, []}
  14. ]}.