db_app.erl 154 B

123456789
  1. -module(db_app).
  2. -behaviour(application).
  3. -export([start/2, stop/1]).
  4. start(_StartType, _StartArgs) ->
  5. db_sup:start_link().
  6. stop(_State) ->
  7. ok.