File: Semantics.hs

package info (click to toggle)
haskell-http-semantics 0.3.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 144 kB
  • sloc: haskell: 1,071; makefile: 2
file content (10 lines) | stat: -rw-r--r-- 511 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
-- | Library for HTTP Semantics ([RFC9110](https://www.rfc-editor.org/rfc/rfc9110.html)), version-independent common parts. For low-level headers, 'Token' is used. For upper-level headers, 'Network.HTTP.Types.HeaderName' should be used.
module Network.HTTP.Semantics (
    module Network.HTTP.Semantics.Types,
    module Network.HTTP.Semantics.Header,
    module Network.HTTP.Semantics.Token,
) where

import Network.HTTP.Semantics.Header
import Network.HTTP.Semantics.Token
import Network.HTTP.Semantics.Types