Packages

Ultra-Minimal Sparkler API

Current section

Files

Jump to
sparkler src sparkler_app.erl
Raw

src/sparkler_app.erl

-module(sparkler_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
sparkler_sup:start_link().
stop(_State) ->
ok.