tcp_echo.app.src 284 B

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