feature(project): add util app emqx_libs
This commit is contained in:
parent
84d31a1d7a
commit
4108662ba1
|
@ -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
|
||||
*~
|
|
@ -0,0 +1,9 @@
|
|||
emqx_libs
|
||||
=====
|
||||
|
||||
Common libs for emqx
|
||||
|
||||
Build
|
||||
-----
|
||||
|
||||
$ rebar3 compile
|
|
@ -0,0 +1,2 @@
|
|||
{erl_opts, [debug_info]}.
|
||||
{deps, []}.
|
|
@ -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, []}
|
||||
]}.
|
|
@ -0,0 +1,3 @@
|
|||
-module(emqx_libs).
|
||||
|
||||
-export([]).
|
Loading…
Reference in New Issue