emqx_auth_postgresql.app.src 423 B

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