Current section
Files
Jump to
Current section
Files
lib/faktory/application.ex
defmodule Faktory.Application do
@moduledoc false
use Application
def start(_type, _args) do
children = [Faktory.Registry]
Supervisor.start_link(children, strategy: :one_for_one)
end
end