Current section

Files

Jump to
bamboo_hr lib bamboo_hr application.ex
Raw

lib/bamboo_hr/application.ex

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