Packages

Advanced job monitoring and filtering for Oban with persistent job history

Current section

Files

Jump to
oban_lens lib oban_lens application.ex
Raw

lib/oban_lens/application.ex

defmodule ObanLens.Application do
@moduledoc false
use Application
@impl true
def start(_type, _args) do
children = [
# No persistent children needed for ObanLens
# Telemetry attachment happens when user calls ObanLens.Telemetry.attach()
]
opts = [strategy: :one_for_one, name: ObanLens.Supervisor]
Supervisor.start_link(children, opts)
end
end