blob: a3c7a969989236f991a4f6a29c49490bcd8c9c72 [file] [log] [blame]
-module(foo_app).
-behaviour(application).
-export([start/2,
stop/1]).
start(_Type, _Args) -> foo_sup:start_link().
stop(_State) -> ok.