Current section
Files
Jump to
Current section
Files
lib/application.ex
defmodule HoneylixirTracing.Application do
use Application
def start(_type, _args) do
Supervisor.start_link(children(), strategy: :one_for_one)
end
defp children do
[
HoneylixirTracing.Context
]
end
end