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
4040 hs-source-dirs : src
4141 ghc-options : -Wall
4242 exposed-modules :
43- Servant.Client.Internal.JSaddleXhrClient
4443 Servant.Client.JSaddle
44+ other-modules :
45+ Servant.Client.JSaddle.Internal.Client
46+ Servant.Client.JSaddle.Internal.Fetch
47+ Servant.Client.JSaddle.Internal.Types
4548
4649 -- Bundled with GHC: Lower bound to not force re-installs
4750 -- text and mtl are bundled starting with GHC-8.4
@@ -71,6 +74,9 @@ library
7174 , semigroupoids >= 5.3.1 && < 6.1
7275 , string-conversions >= 0.3 && < 0.5
7376 , transformers-base >= 0.4.4 && < 0.5
77+ , servant
78+ , mmorph
79+ , kan-extensions
7480
7581 if impl(ghc >= 8.0 )
7682 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
77 , ClientM
88 , runClientM
99 , runClientM'
10+ , withClientM
1011
1112 -- * Configuration
1213 , ClientEnv (.. )
@@ -16,5 +17,6 @@ module Servant.Client.JSaddle
1617 , module Servant.Client.Core.Reexport
1718 ) where
1819
19- import Servant.Client.Internal.JSaddleXhrClient
20+ import Servant.Client.JSaddle.Internal.Client
21+ import Servant.Client.JSaddle.Internal.Types
2022import Servant.Client.Core.Reexport
You can’t perform that action at this time.
0 commit comments