Packages

Tiny drop-in for painless acknowledgements across different applications.

Current section

Files

Jump to
ack lib ack application.ex
Raw

lib/ack/application.ex

defmodule Ack.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [
{Ack.Listener, []}
]
opts = [strategy: :one_for_one, name: Ack.Supervisor]
Supervisor.start_link(children, opts)
end
end