blob: e9f7836e8f94c3a644e57f8137f1db4cb2a227dd [file] [log] [blame]
-module(couch_stats_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
couch_stats_sup:start_link().
stop(_State) ->
ok.