blob: 6b43a9446751afbf7d97c4b7836ad51e61dc1cfc [file] [log] [blame]
Harald Welte790f3642011-02-03 17:44:50 +01001-module(mgw_nat_app).
2-behavior(application).
3-export([start/2, stop/1]).
4
5start(_Type, _Args) ->
6 Sup = mgw_nat_sup:start_link(),
7 io:format("Sup ~p~n", [Sup]),
8 Sup.
9
10stop(_State) ->
11 ok.