servant/servant-client-ghcjs/src/Servant/Client/Ghcjs.hs
2017-10-22 14:55:18 +02:00

15 lines
369 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.Ghcjs
(
client
, ClientM
, runClientM
, ClientEnv(..)
, module Servant.Client.Core.Reexport
) where
import Servant.Client.Internal.XhrClient
import Servant.Client.Core.Reexport