Interface describes an object that represents a GitHub repository
| 12 | |
| 13 | // Interface describes an object that represents a GitHub repository |
| 14 | type Interface interface { |
| 15 | RepoName() string |
| 16 | RepoOwner() string |
| 17 | RepoHost() string |
| 18 | } |
| 19 | |
| 20 | // New instantiates a GitHub repository from owner and name arguments |
| 21 | func New(owner, repo string) Interface { |
no outgoing calls
no test coverage detected