Current section
Files
Jump to
Current section
Files
lib/quck_factory/application.ex
defmodule QuickFactory.Application do
use Application
@impl true
def start(_type, _args) do
QuickFactory.Counters.start()
Supervisor.start_link([QuickFactory.Sequence],
strategy: :one_for_one,
name: __MODULE__.Supervisor
)
end
end