Packages

Elixir worker for Faktory (successor of Sidekiq); async/background queue processing

Current section

Files

Jump to
faktory_worker_ex lib faktory application.ex
Raw

lib/faktory/application.ex

defmodule Faktory.Application do
@moduledoc false
use Application
def start(_type, _args) do
Faktory.Configuration.init
Faktory.Supervisor.start_link
end
end