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