License | BSD-3-Clause |
---|---|
Maintainer | Oleg Grenrus <oleg.grenrus@iki.fi> |
Safe Haskell | None |
Language | Haskell2010 |
The Github RateLimit API, as described at http://developer.github.com/v3/rate_limit/.
Documentation
rateLimitR :: Request k RateLimit Source #
Get your current rate limit status. https://developer.github.com/v3/rate_limit/#get-your-current-rate-limit-status
rateLimit :: IO (Either Error RateLimit) Source #
Get your current rate limit status (Note: Accessing this endpoint does not count against your rate limit.) Without authentication.
rateLimit' :: Maybe Auth -> IO (Either Error RateLimit) Source #
Get your current rate limit status (Note: Accessing this endpoint does not count against your rate limit.) With authentication.
module GitHub.Data