Current section

Files

Jump to
time_zone_info lib time_zone_info application.ex
Raw

lib/time_zone_info/application.ex

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