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