2017-09-24 16:05:38 +02:00
|
|
|
-- | 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
|
2017-09-26 21:38:44 +02:00
|
|
|
, ClientM
|
|
|
|
, runClientM
|
|
|
|
, ClientEnv(..)
|
2017-09-24 16:05:38 +02:00
|
|
|
, module Servant.Client.Core.Reexport
|
|
|
|
) where
|
|
|
|
|
|
|
|
import Servant.Client.Internal.XhrClient
|
|
|
|
import Servant.Client.Core.Reexport
|