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