10 lines
261 B
Haskell
10 lines
261 B
Haskell
module HTTPure.Headers
|
|
( Headers
|
|
) where
|
|
|
|
import Data.StrMap as StrMap
|
|
|
|
-- | The Headers type is just sugar for a StrMap of Strings that represents the
|
|
-- | set of headers sent or received in an HTTP request or response.
|
|
type Headers = StrMap.StrMap String
|