Current section
Files
Jump to
Current section
Files
lib/elixir_weather.ex
defmodule ElixirWeather do
def start(_type, _args) do
import Supervisor.Spec, warn: false
opts = [strategy: :one_for_one, name: ElixirWeather.Supervisor]
Supervisor.start_link([], opts)
end
end