Webanwendung mit FastCGI und Haskell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- {-# LANGUAGE OverloadedStrings #-}
-
- module App.Info (
- Info(..)
- ) where
-
- import Request
- import Template
- import Network.FastCGI
-
- data Info = Info
-
- instance RequestHandler Info where
- handle handler = do
- result <- render "info" [("pagetitle", "Info")]
- output result
|