@hackage circlehs0.0.3
The CircleCI REST API for Haskell
Categories
License
MIT
Maintainer
me@dshevchenko.biz
Links
Versions
- 0.0.3 Thu, 28 Apr 2016
Installation
Tested Compilers
Dependencies (11)
- base >=4.7 && <5
- mtl >=2.2.1 && <2.3
- text >=1.2.2.1 && <2
- transformers >=0.4.2.0 && <0.6
- aeson >=0.9.0.1 && <0.12
- http-client >=0.4.24 && <0.5 Show all…
Dependents (1)
@hackage/acme-everything
CircleHs
The CircleCI REST API implementation in Haskell. For more info please see official API reference.
Work in progress.
Hello, CircleCI!
Let's obtain information about the user:
{-# LANGUAGE OverloadedStrings #-}
{-# LANGUAGE LambdaCase #-}
import Network.CircleCI
main :: IO ()
main = runCircleCI getUserInfo
(AccountAPIToken "e64c67410f96ba2whatever")
>>= \case
Left problem -> print problem
Right info -> print info