File: Internal.hs

package info (click to toggle)
haskell-http-client 0.7.17-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 528 kB
  • sloc: haskell: 4,029; makefile: 3
file content (41 lines) | stat: -rw-r--r-- 1,512 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
{-# OPTIONS_HADDOCK not-home #-}
-- | Note that this is essentially the \"kitchen sink\" export module,
-- including many functions intended only to be used internally by this
-- package. No API stability is guaranteed for this module. If you see
-- functions here which you believe should be promoted to a stable API, please
-- contact the author.
module Network.HTTP.Client.Internal
    ( -- * Low-level response body handling
      module Network.HTTP.Client.Body
      -- * Raw connection handling
    , module Network.HTTP.Client.Connection
      -- * Cookies
    , module Network.HTTP.Client.Cookies
      -- * Performing requests
    , module Network.HTTP.Client.Core
      -- * Parse response headers
    , module Network.HTTP.Client.Headers
      -- * Request helper functions
    , module Network.HTTP.Client.Request
      -- * Low-level response body handling
    , module Network.HTTP.Client.Response
      -- * Manager
    , module Network.HTTP.Client.Manager
      -- * All types
    , module Network.HTTP.Client.Types
      -- * Various utilities
    , module Network.HTTP.Client.Util
    , dummyManaged
    ) where

import Network.HTTP.Client.Body
import Network.HTTP.Client.Connection
import Network.HTTP.Client.Cookies
import Network.HTTP.Client.Core
import Network.HTTP.Client.Headers
import Network.HTTP.Client.Manager
import Network.HTTP.Client.Request
import Network.HTTP.Client.Response
import Network.HTTP.Client.Types
import Network.HTTP.Client.Util
import Data.KeyedPool (dummyManaged)