Current section

Files

Jump to
snowhite lib open_weather forecast.ex
Raw

lib/open_weather/forecast.ex

defmodule OpenWeather.Forecast do
@keys ~w(city list)a
defstruct @keys
use Starchoice.Decoder
defdecoder do
field(:city, with: OpenWeather.Forecast.City)
field(:list, with: OpenWeather.Forecast.ForecastItem)
end
end