Module
HTTPure.HTTPureM
- Package
- purescript-httpure
- Repository
- cprussin/purescript-httpure
#HTTPureEffects Source
type HTTPureEffects e = (exception :: EXCEPTION, http :: HTTP, st :: ST String | e)A row of types that are used by an HTTPure server.
#HTTPureM Source
type HTTPureM e t = Eff (HTTPureEffects e) tThe HTTPureM monad represents effects run by an HTTPure server. It takes
an effects row parameter which enumerates all other side-effects performed
while carrying out the server actions.