servant/servant-client
2015-05-11 10:43:52 +02:00
..
src/Servant clean up Client and remove Setup binary 2015-05-08 17:51:23 -06:00
test clean up Client and remove Setup binary 2015-05-08 17:51:23 -06:00
CHANGELOG.md Bump everything to 0.4 2015-05-09 17:28:52 +02:00
default.nix Bump everything to 0.4 2015-05-09 17:28:52 +02:00
docs.sh prepare merge 2015-04-20 11:15:58 +02:00
LICENSE prepare merge 2015-04-20 11:15:58 +02:00
README.md Update READMEs 2015-04-20 15:48:37 +02:00
servant-client.cabal fix some links in the cabal descriptions 2015-05-11 10:43:52 +02:00
Setup.hs prepare merge 2015-04-20 11:15:58 +02:00

servant-client

servant

This library lets you automatically derive Haskell functions that let you query each endpoint of a servant webservice.

Example

type MyApi = "books" :> Get [Book] -- GET /books
        :<|> "books" :> ReqBody Book :> Post Book -- POST /books

myApi :: Proxy MyApi
myApi = Proxy

getAllBooks :: BaseUrl -> EitherT String IO [Book]
postNewBook :: Book -> BaseUrl -> EitherT String IO Book
-- 'client' allows you to produce operations to query an API from a client.
(getAllBooks :<|> postNewBook) = client myApi