arangodb erlang数据库驱动
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

11 line
168 B

4 年之前
  1. -module(erlArango_app).
  2. -behaviour(application).
  3. -export([start/2, stop/1]).
  4. start(_StartType, _StartArgs) ->
  5. erlArango_sup:start_link().
  6. stop(_State) ->
  7. ok.