towerops/vendor/oban_pro/lib/oban/pro/handler.ex
2026-01-26 17:07:42 -06:00

13 lines
202 B
Elixir

defmodule Oban.Pro.Handler do
@moduledoc false
@doc """
Attach handler hooks.
"""
@callback on_start() :: any()
@doc """
Teardown handler hooks.
"""
@callback on_stop() :: any()
end