Current section
Files
Jump to
Current section
Files
src/sql_bridge_app.erl
-module(sql_bridge_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
sql_bridge_sup:start_link().
stop(_State) ->
ok.