~alcinnz/bureaucromancy

ref: 1d26283d8a83d29ddba319e34a56de51b99d5769 bureaucromancy/src/Network/HTTP/Form/WebApp.hs -rw-r--r-- 282 bytes
1d26283d — Adrian Cochrane Add a quick description. 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 ""