mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-11 22:09:32 -06:00
12 lines
505 B
Haskell
12 lines
505 B
Haskell
-- | Isolate dependencies on the problematic cgi package to this module
|
|
module CGI(module C) where
|
|
import Network.CGI as C(
|
|
CGI,ContentType(..),Accept(..),Language(..),
|
|
getVarWithDefault,readInput,negotiate,requestAcceptLanguage,getInput,
|
|
setHeader,output,outputFPS,outputError,
|
|
handleErrors,
|
|
liftIO)
|
|
import Network.CGI.Protocol as C(CGIResult(..),CGIRequest(..),Input(..),
|
|
Headers,HeaderName(..))
|
|
import Network.CGI.Monad as C(runCGIT)
|