module Servall.Types ( WikiTemplate(..) ) where import qualified Data.HashMap.Lazy as HM import Data.Text ( Text ) data WikiTemplate = WikiTemplate { wtName :: Text -- , wtSubName :: Maybe Text , wtFields :: HM.HashMap Text Text } deriving Show