Current section
Files
Jump to
Current section
Files
examples/ct_ecto/deps/telemetry/src/telemetry_app.erl
%% @private
-module(telemetry_app).
-behaviour(application).
-export([start/2, stop/1]).
start(_StartType, _StartArgs) ->
telemetry_sup:start_link().
stop(_State) ->
ok.