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
|
2017-09-13 22:01:31 +02:00
|
|
|
, module Servant.Client.Core.Reexport
|
2017-09-12 18:38:52 +02:00
|
|
|
) where
|
|
|
|
|
|
|
|
import Servant.Client.Internal.HttpClient
|
2017-09-13 22:01:31 +02:00
|
|
|
import Servant.Client.Core.Reexport
|