yaws 1.73 compatibility
[fuzed.git] / elibs / fuzed_app.erl
blob6b9e5ca87a1c302d6331d56c8f2a327242714aa6
1 -module(fuzed_app).
2 -behaviour(application).
3 -export([start/2, stop/1]).
5 start(_Type, StartArgs) ->
6 fuzed_sup:start_link(StartArgs).
8 stop(_State) ->
9 ok.