FullName serializes a GitHub repository into an "OWNER/REPO" string
(r Interface)
| 33 | |
| 34 | // FullName serializes a GitHub repository into an "OWNER/REPO" string |
| 35 | func FullName(r Interface) string { |
| 36 | return fmt.Sprintf("%s/%s", r.RepoOwner(), r.RepoName()) |
| 37 | } |
| 38 | |
| 39 | func defaultHost() string { |
| 40 | host, _ := ghauth.DefaultHost() |