active_app.erl 160 B

123456789101112
  1. -module(active_app).
  2. -behaviour(application).
  3. -export([start/2, stop/1]).
  4. start(_StartType, _StartArgs) ->
  5. active_sup:start_link().
  6. stop(_State) -> ok.