servant/servant-client/src/Servant/Client.hs
2017-09-14 09:54:13 -04:00

14 lines
360 B
Haskell

-- | This module provides 'client' which can automatically generate
-- querying functions for each endpoint just from the type representing your
-- API.
module Servant.Client
( client
, ClientM
, runClientM
, ClientEnv(..)
, module Servant.Client.Core.Reexport
) where
import Servant.Client.Internal.HttpClient
import Servant.Client.Core.Reexport