module Model.Conf exposing ( Conf , confDecoder ) import Json.Decode as Decode exposing (Decoder) type alias Conf = { currency : String } confDecoder : Decoder Conf confDecoder = Decode.map Conf (Decode.field "currency" Decode.string)