emqx_auth_mongodb.app.src 411 B

12345678910111213141516171819
  1. %% -*- mode: erlang -*-
  2. {application, emqx_auth_mongodb, [
  3. {description, "EMQX MongoDB Authentication and Authorization"},
  4. {vsn, "0.2.2"},
  5. {registered, []},
  6. {mod, {emqx_auth_mongodb_app, []}},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. emqx,
  11. emqx_auth,
  12. emqx_mongodb
  13. ]},
  14. {env, []},
  15. {modules, []},
  16. {licenses, ["Apache 2.0"]},
  17. {links, []}
  18. ]}.