emqx_auth_ldap.app.src 413 B

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