Safe Haskell | None |
---|---|
Language | Haskell98 |
The user followers API as described on http://developer.github.com/v3/users/followers/.
- usersFollowing :: String -> IO (Either Error [GithubOwner])
- usersFollowedBy :: String -> IO (Either Error [GithubOwner])
- module Github.Data
Documentation
usersFollowing :: String -> IO (Either Error [GithubOwner]) Source
All the users following the given user.
usersFollowing "mike-burns"
usersFollowedBy :: String -> IO (Either Error [GithubOwner]) Source
All the users that the given user follows.
usersFollowedBy "mike-burns"
module Github.Data