http-pony-0.1.0.5: A type unsafe http library

Safe HaskellSafe
LanguageHaskell2010

Network.HTTP.Pony.Type

Documentation

type Application m a b s t = Producer a m s -> m (Producer b m t) Source #

type Middleware f s t a b = (a -> f b) -> s -> f t Source #

type Middleware' f s t = (s -> f t) -> s -> f t Source #