~alcinnz/bureaucromancy

ref: 9ecdfe8ac519c72512ff65011ab2da2f0d5a44de bureaucromancy/src/Network/HTTP/Form/WebApp.hs -rw-r--r-- 282 bytes
9ecdfe8a — Adrian Cochrane Start skeleton for Bureaucromancy 1 year, 4 months ago
                                                                                
1
2
3
4
5
6
7
8
9
{-# LANGUAGE OverloadedStrings #-}
module Network.HTTP.Form.WebApp (renderPage) where

import Data.ByteString as BS
import Data.Text as Txt
import Network.HTTP.Form (Form(..))

renderPage :: Form -> [Text] -> [(ByteString, Maybe ByteString)] -> IO Text
renderPage _ _ _ = return ""