-module(ggs_app). -behaviour(application). -export([start/2, stop/1]). start(_StartType, _StartArgs) -> case ggs_sup:start_link(9000) of {ok, Pid} -> {ok, Pid}; Other -> {error, Other} end. stop(_State) -> ok.