| Copyright | (c) Jon Schoning, 2015 |
|---|---|
| Maintainer | jonschoning@gmail.com |
| Stability | experimental |
| Portability | POSIX |
| Safe Haskell | None |
| Language | Haskell2010 |
Pinboard
Description
import Pinboard
main :: IO ()
main = do
let config = fromApiToken "api token"
result <- runPinboardJson config $ getPostsRecent Nothing Nothing
case result of
Right details -> print details
Left pinboardError -> print pinboardError
- module Pinboard.Client
- module Pinboard.Api
- module Pinboard.ApiTypes
Pinboard.Client
Executes the methods defined in Pinboard.Api
module Pinboard.Client
Pinboard.Api
Provides Pinboard Api Methods
module Pinboard.Api
Pinboard.ApiTypes
Pinboard Data Structures returned by the Api
module Pinboard.ApiTypes