markdown_middleware.app.src 333 B

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