http-pony-serve-wai-0.1.0.0: Serve a WAI application with http-pony

Safe HaskellNone
LanguageHaskell2010

Network.HTTP.Pony.Serve.Wai.Type

Documentation

type Message a m r = (StartLine, [Header], Producer a m r) Source #

type Request a m r = Message a m r Source #

type Response a m r = Message a m r Source #

type Application m a b c d = Request a m c -> m (Response b m d) Source #