13 lines
202 B
Elixir
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
|