Compare commits
2 Commits
0aae14479d
...
1ecf47b391
Author | SHA1 | Date | |
---|---|---|---|
Jonathan Lamothe | 1ecf47b391 | ||
Jonathan Lamothe | 3e17acc4f3 |
|
@ -27,7 +27,9 @@ License along with this program. If not, see
|
||||||
{-# LANGUAGE LambdaCase, OverloadedStrings, RecordWildCards #-}
|
{-# LANGUAGE LambdaCase, OverloadedStrings, RecordWildCards #-}
|
||||||
|
|
||||||
module Network.GemServ (
|
module Network.GemServ (
|
||||||
|
-- * Running a Gemini Server
|
||||||
runGemServer,
|
runGemServer,
|
||||||
|
-- * Encoding/Decoding Functions
|
||||||
encodeGemURL,
|
encodeGemURL,
|
||||||
decodeGemURL,
|
decodeGemURL,
|
||||||
escapeString,
|
escapeString,
|
||||||
|
|
|
@ -38,7 +38,7 @@ module Network.GemServ.Types (
|
||||||
newGemServSettings
|
newGemServSettings
|
||||||
) where
|
) where
|
||||||
|
|
||||||
import qualified Data.ByteString as BS
|
import qualified Data.ByteString.Lazy as BSL
|
||||||
import Data.Word (Word8, Word16, Word32)
|
import Data.Word (Word8, Word16, Word32)
|
||||||
import Data.X509 (Certificate)
|
import Data.X509 (Certificate)
|
||||||
|
|
||||||
|
@ -68,7 +68,7 @@ data GemResponse = GemResponse
|
||||||
-- ^ The response status code
|
-- ^ The response status code
|
||||||
, respMeta :: String
|
, respMeta :: String
|
||||||
-- ^ The response metadata
|
-- ^ The response metadata
|
||||||
, respBody :: Maybe BS.ByteString
|
, respBody :: Maybe BSL.ByteString
|
||||||
-- ^ The response body
|
-- ^ The response body
|
||||||
} deriving (Eq, Show)
|
} deriving (Eq, Show)
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user