-- | The Github Users API, as described at -- . module Github.Users ( userInfoFor ,module Github.Data ) where import Github.Data import Github.Private -- | The information for a single user, by login name. -- -- > userInfoFor "mike-burns" userInfoFor :: String -> IO (Either Error DetailedOwner) userInfoFor userName = githubGet ["users", userName]