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

19 lines
430 B
Haskell
Raw Normal View History

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
, withClientM
2017-09-13 17:05:48 +02:00
, ClientEnv(..)
, mkClientEnv
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