web_app.erl 325 B

12345678910
  1. -module(web_app).
  2. -behaviour(application).
  3. -export([start/0, start/2, stop/1, main/1, log_modules/0]).
  4. main(A) -> mad_repl:main(A,[]).
  5. start() -> start(normal, []).
  6. start(_StartType, _StartArgs) -> web_sup:start_link().
  7. stop(_State) -> ok.
  8. log_modules() -> [n2o_websocket,n2o_client,n2o_heart,n2o_nitrogen,bullet_handler].