feature(project): add util app emqx_libs

This commit is contained in:
terry-xiaoyu 2020-10-31 12:06:44 +08:00
parent 84d31a1d7a
commit 4108662ba1
5 changed files with 47 additions and 0 deletions

19
apps/emqx_libs/.gitignore vendored Normal file
View File

@ -0,0 +1,19 @@
.rebar3
_*
.eunit
*.o
*.beam
*.plt
*.swp
*.swo
.erlang.cookie
ebin
log
erl_crash.dump
.rebar
logs
_build
.idea
*.iml
rebar3.crashdump
*~

9
apps/emqx_libs/README.md Normal file
View File

@ -0,0 +1,9 @@
emqx_libs
=====
Common libs for emqx
Build
-----
$ rebar3 compile

View File

@ -0,0 +1,2 @@
{erl_opts, [debug_info]}.
{deps, []}.

View File

@ -0,0 +1,14 @@
{application, emqx_libs,
[{description, "EMQ X library"},
{vsn, "5.0"},
{registered, []},
{applications,
[kernel,
stdlib
]},
{env,[]},
{modules, []},
{licenses, ["Apache 2.0"]},
{maintainers, ["EMQ X Team <contact@emqx.io>"]},
{links, []}
]}.

View File

@ -0,0 +1,3 @@
-module(emqx_libs).
-export([]).