iot_cloud/apps/iot/src/iot.app.src
2026-05-30 15:25:40 +08:00

36 lines
482 B
Erlang

{application, iot,
[{description, "An OTP application"},
{vsn, "0.1.0"},
{registered, []},
{mod, {iot_app, []}},
{applications,
[
sync,
endpoint,
emqtt,
eredis,
ranch,
cowboy,
brod,
hackney,
poolboy,
gproc,
% gpb,
mnesia,
crypto,
public_key,
ssl,
erts,
runtime_tools,
observer,
inets,
kernel,
stdlib
]},
{env,[]},
{modules, []},
{licenses, ["Apache 2.0"]},
{links, []}
]}.