cookie.app.src 289 B

12345678910111213141516
  1. %% Feel free to use, reuse and abuse the code in this file.
  2. {application, cookie, [
  3. {description, "Cowboy Cookie example."},
  4. {vsn, "1"},
  5. {modules, []},
  6. {registered, [cookie_sup]},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. cowboy,
  11. erlydtl
  12. ]},
  13. {mod, {cookie_app, []}},
  14. {env, []}
  15. ]}.