Current section

Files

Jump to
new_relic_agent lib new_relic transaction sidecar_store.ex
Raw

lib/new_relic/transaction/sidecar_store.ex

defmodule NewRelic.Transaction.SidecarStore do
use Supervisor
@moduledoc false
def start_link(_) do
Supervisor.start_link(__MODULE__, :ok)
end
def init(:ok) do
NewRelic.Transaction.Sidecar.setup_stores()
Supervisor.init([], strategy: :one_for_one)
end
end