| 123456789101112131415161718192021 |
- %% -*- mode: erlang -*-
- {application, emqx_auth_jwt, [
- {description, "EMQX JWT Authentication and Authorization"},
- {vsn, "0.1.0"},
- {registered, []},
- {mod, {emqx_auth_jwt_app, []}},
- {applications, [
- kernel,
- stdlib,
- jose,
- emqx,
- emqx_auth,
- emqx_connector,
- emqx_resource
- ]},
- {env, []},
- {modules, []},
- {licenses, ["Apache 2.0"]},
- {links, []}
- ]}.
|