20 lines
426 B
Erlang
20 lines
426 B
Erlang
%% -*- mode: erlang -*-
|
|
{application, emqx_auth_http, [
|
|
{description, "EMQX External HTTP API Authentication and Authorization"},
|
|
{vsn, "0.3.1"},
|
|
{registered, []},
|
|
{mod, {emqx_auth_http_app, []}},
|
|
{applications, [
|
|
kernel,
|
|
stdlib,
|
|
emqx_auth,
|
|
emqx_connector,
|
|
emqx_resource
|
|
]},
|
|
{env, []},
|
|
{modules, []},
|
|
|
|
{licenses, ["Apache 2.0"]},
|
|
{links, []}
|
|
]}.
|