Package com.sudicode.fb2gh.github
Interface GitHub
-
public interface GitHub
Entry point for the GitHub API. UseGHFactory
to instantiate.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description GHRepo
getRepo(String repoOwner, String repoName)
Access a repository.
-
-
-
Method Detail
-
getRepo
GHRepo getRepo(String repoOwner, String repoName)
Access a repository.- Parameters:
repoOwner
- The owner of the repository. For example, if accessing thetwbs/bootstrap
repository, the owner would betwbs
.repoName
- The name of the repository. For example, if accessing thetwbs/bootstrap
repository, the name would bebootstrap
.- Returns:
- The repository.
-
-