blob: c4e32eabe1b99db6d573c42cb9d34127a1a49dcf [file] [log] [blame]
-module(mgw_nat_app).
-behavior(application).
-export([start/2, stop/1]).
-export([reload_config/0]).
start(_Type, _Args) ->
Sup = mgw_nat_sup:start_link(),
io:format("Sup ~p~n", [Sup]),
Sup.
stop(_State) ->
ok.
reload_config() ->
osmo_util:reload_config().