We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e14f445 commit 6f12e38Copy full SHA for 6f12e38
servant/CHANGELOG.md
@@ -48,11 +48,11 @@ Package versions follow the [Package Versioning Policy](https://pvp.haskell.org/
48
rootClient :: RootApi (AsClientT ClientM)
49
rootClient = client (Proxy @API)
50
51
- hello :: String -> ClientM String
52
- hello name = rootClient // hello /: name
+ helloClient :: String -> ClientM String
+ helloClient name = rootClient // hello /: name
53
54
endpointClient :: ClientM Person
55
- endpointClient = client // subApi /: "foobar123" // endpoint
+ endpointClient = rootClient // subApi /: "foobar123" // endpoint
56
57
type Api = NamedRoutes RootApi
58
0 commit comments