Packages

Page parser for weather sites

Current section

Files

Jump to
elixir_weather lib elixir_weather.ex
Raw

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