blob: 51363b363034597589f8bbc79581556d9a2788a9 [file] [log] [blame]
-module(dummy_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_,_) ->
dummy_sup:start_link().
stop(_) -> ok.