emqx_authz.app.src 421 B

123456789101112131415161718192021
  1. %% -*- mode: erlang -*-
  2. {application, emqx_authz, [
  3. {description, "An OTP application"},
  4. {vsn, "0.1.23"},
  5. {registered, []},
  6. {mod, {emqx_authz_app, []}},
  7. {applications, [
  8. kernel,
  9. stdlib,
  10. crypto,
  11. emqx_resource,
  12. emqx_connector,
  13. emqx_mongodb,
  14. emqx_redis
  15. ]},
  16. {env, []},
  17. {modules, []},
  18. {licenses, ["Apache 2.0"]},
  19. {links, []}
  20. ]}.