nitro.erl 252 B

123456789
  1. -module(svg).
  2. -compile(export_all).
  3. -behaviour(application).
  4. -export([start/2, stop/1, init/1]).
  5. start(_StartType, _StartArgs) -> supervisor:start_link({local, ?MODULE}, ?MODULE, []).
  6. stop(_State) -> ok.
  7. init([]) -> {ok, {{one_for_one, 5, 10}, []}}.