emqx_authz.app.src 379 B

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