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

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