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