webcrank-0.2: Webmachine inspired toolkit for building http applications and services.

Safe HaskellNone
LanguageHaskell98

Webcrank.ServerAPI.WebcrankT

Synopsis

Documentation

newtype WebcrankT m a Source

Monad transformer that can be used by server API providers. Provides tracking of the request state and logging of the decisions made so far. For example

type WaiCrank m a = ReaderT (Request, HTTPDate) (WebcrankT m) a

Constructors

WebcrankT