bamboo-2009.6.9: src/Bamboo/Type/ThemeInterface.hs
module Bamboo.Type.ThemeInterface where
import Bamboo.Type.State (State)
import Hack (Response)
data Interface =
Index
| IndexFeed
| Post
| Static
| Tag
| TagFeed
| Search
deriving (Show, Eq)
type Theme = Interface -> State -> IO Response