File: Internal.hs

package info (click to toggle)
haskell-http2 5.3.10-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 55,120 kB
  • sloc: haskell: 7,911; makefile: 3
file content (16 lines) | stat: -rw-r--r-- 301 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
module Network.HTTP2.Server.Internal (
    Request (..),
    Response (..),
    Aux (..),

    -- * Low level
    Stream,
    ServerIO (..),
    runIO,
) where

import Network.HTTP.Semantics.Server
import Network.HTTP.Semantics.Server.Internal

import Network.HTTP2.H2
import Network.HTTP2.Server.Run