nsg_games_app.erl 313 B

12345678910
  1. -module(nsg_games_app).
  2. -behaviour(application).
  3. -export([start/2, start/0, stop/0, stop/1]).
  4. -include_lib("eunit/include/eunit.hrl").
  5. -include_lib("server/include/conf.hrl").
  6. start() -> start(init,[]).
  7. start(_StartType, _StartArgs) -> game_sup:start_link().
  8. stop() -> stop([]).
  9. stop(_State) -> game_sup:stop().