bamboo-2009.6.6: src/Bamboo/Controller/Type.hs
module Bamboo.Controller.Type where import Bamboo.Type.State (State) import Control.Monad.State (StateT) import Hack (Response) type StateController a = StateT State IO a type Controller = StateController () type ETagController = StateController String type View = State -> IO Response type Part a = StateT State IO a