Making impossible states Impossible
type alias ServerRequest =
{ Response (Maybe String)
, Failed (Maybe Error)
}
-- There can not be a Response and an Error at the same time.type ServerRequest =
Waiting
Response String
Failed ErrorFurther reading
Last updated