Packages
build_you_a_telemetry
0.1.0
Example minimal re-implementation of the `:telemetry` library. See project `README.md` for more details
Current section
Files
Jump to
Current section
Files
lib/telemetry/application.ex
defmodule Telemetry.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
{Telemetry.HandlerTable, nil}
]
opts = [strategy: :one_for_one, name: Telemetry.Supervisor]
Supervisor.start_link(children, opts)
end
end