apiary-0.3.2.0: Simple web framework inspired by scotty.

Safe HaskellNone
LanguageHaskell2010

Control.Monad.Apiary

Contents

Synopsis

Documentation

data ApiaryT c m a Source

Instances

type Apiary c = ApiaryT c IO Source

runApiaryT :: Monad m => ApiaryConfig -> (forall x. m x -> IO x) -> ApiaryT () m a -> Application Source

getter

execute action

action :: Monad m => (c -> ActionT m ()) -> ApiaryT c m () Source

action_ :: Monad m => ActionT m () -> ApiaryT c m () Source

Reexport