osmo_dia2gsup/src/osmo_dia2gsup_app.erl

11 lines
171 B
Erlang
Raw Normal View History

2019-08-10 20:14:50 +00:00
-module(osmo_dia2gsup_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
2019-08-14 11:28:08 +00:00
osmo_dia2gsup_sup:start_link().
2019-08-10 20:14:50 +00:00
stop(_State) ->
ok.