File tree Expand file tree Collapse file tree 6 files changed +406
-321
lines changed Expand file tree Collapse file tree 6 files changed +406
-321
lines changed Original file line number Diff line number Diff line change @@ -40,8 +40,11 @@ library
40
40
hs-source-dirs : src
41
41
ghc-options : -Wall
42
42
exposed-modules :
43
- Servant.Client.Internal.JSaddleXhrClient
44
43
Servant.Client.JSaddle
44
+ other-modules :
45
+ Servant.Client.JSaddle.Internal.Client
46
+ Servant.Client.JSaddle.Internal.Fetch
47
+ Servant.Client.JSaddle.Internal.Types
45
48
46
49
-- Bundled with GHC: Lower bound to not force re-installs
47
50
-- text and mtl are bundled starting with GHC-8.4
@@ -71,6 +74,9 @@ library
71
74
, semigroupoids >= 5.3.1 && < 6.1
72
75
, string-conversions >= 0.3 && < 0.5
73
76
, transformers-base >= 0.4.4 && < 0.5
77
+ , servant
78
+ , mmorph
79
+ , kan-extensions
74
80
75
81
if impl(ghc >= 8.0 )
76
82
ghc-options : -Wno-redundant-constraints
Load Diff This file was deleted.
Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ module Servant.Client.JSaddle
7
7
, ClientM
8
8
, runClientM
9
9
, runClientM'
10
+ , withClientM
10
11
11
12
-- * Configuration
12
13
, ClientEnv (.. )
@@ -16,5 +17,6 @@ module Servant.Client.JSaddle
16
17
, module Servant.Client.Core.Reexport
17
18
) where
18
19
19
- import Servant.Client.Internal.JSaddleXhrClient
20
+ import Servant.Client.JSaddle.Internal.Client
21
+ import Servant.Client.JSaddle.Internal.Types
20
22
import Servant.Client.Core.Reexport
You can’t perform that action at this time.
0 commit comments