servant/servant-client/src/Servant/Client/Streaming.hs

20 lines
546 B
Haskell
Raw Normal View History

-- | This module provides 'client' which can automatically generate
-- querying functions for each endpoint just from the type representing your
-- API.
--
-- This client supports streaming operations.
module Servant.Client.Streaming
( client
, ClientM
, withClientM
2018-11-09 18:43:55 +01:00
, runClientM
, ClientEnv(..)
, mkClientEnv
, defaultMakeClientRequest
, hoistClient
, module Servant.Client.Core.Reexport
) where
import Servant.Client.Core.Reexport
import Servant.Client.Internal.HttpClient.Streaming