| 12345678910111213141516171819 |
- %% -*- mode: erlang -*-
- {application, emqx_auth_mongodb, [
- {description, "EMQX MongoDB Authentication and Authorization"},
- {vsn, "0.2.2"},
- {registered, []},
- {mod, {emqx_auth_mongodb_app, []}},
- {applications, [
- kernel,
- stdlib,
- emqx,
- emqx_auth,
- emqx_mongodb
- ]},
- {env, []},
- {modules, []},
- {licenses, ["Apache 2.0"]},
- {links, []}
- ]}.
|