servant/servant-client
2015-05-02 12:09:00 +02:00
..
src/Servant Headers for all 2015-05-02 02:21:03 +01:00
test Headers for all 2015-05-02 02:21:03 +01:00
CHANGELOG.md Changelog and sources.txt updates 2015-05-02 12:09:00 +02:00
default.nix default.nix and sources files 2015-04-20 19:13:55 +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 Add link to changelogs in cabal file 2015-04-20 16:00:51 +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