Packages

Banking Database

Current section

Files

Jump to
db src db_app.erl
Raw

src/db_app.erl

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