2018-01-30 17:40:02 +01:00
|
|
|
|
|
|
|
|
2017-09-13 17:05:48 +02:00
|
|
|
-- | This module provides 'client' which can automatically generate
|
|
|
|
-- querying functions for each endpoint just from the type representing your
|
|
|
|
-- API.
|
2017-09-12 18:38:52 +02:00
|
|
|
module Servant.Client
|
2017-09-13 17:05:48 +02:00
|
|
|
( client
|
2017-09-12 18:38:52 +02:00
|
|
|
, ClientM
|
|
|
|
, runClientM
|
2017-09-13 17:05:48 +02:00
|
|
|
, ClientEnv(..)
|
2017-12-31 02:48:44 +01:00
|
|
|
, mkClientEnv
|
2019-09-05 08:47:14 +02:00
|
|
|
, defaultMakeClientRequest
|
2018-04-04 01:14:18 +02:00
|
|
|
, hoistClient
|
2017-09-13 22:01:31 +02:00
|
|
|
, module Servant.Client.Core.Reexport
|
2017-09-12 18:38:52 +02:00
|
|
|
) where
|
|
|
|
|
2018-06-29 21:08:26 +02:00
|
|
|
import Servant.Client.Core.Reexport
|
|
|
|
import Servant.Client.Internal.HttpClient
|