Current section

Files

Jump to
snowhite lib open_weather weather main.ex
Raw

lib/open_weather/weather/main.ex

defmodule OpenWeather.Weather.Main do
@keys ~w(temp feels_like temp_min temp_max pressure humidity)a
defstruct @keys
use Starchoice.Decoder
defdecoder do
Enum.map(@keys, &field/1)
end
end