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