active_app.erl 153 B

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