(org, repo, enterprise string)
| 413 | } |
| 414 | |
| 415 | func getRegistrationKey(org, repo, enterprise string) string { |
| 416 | return fmt.Sprintf("org=%s,repo=%s,enterprise=%s", org, repo, enterprise) |
| 417 | } |
| 418 | |
| 419 | func splitOwnerAndRepo(repo string) (string, string, error) { |
| 420 | chunk := strings.Split(repo, "/") |
no outgoing calls
no test coverage detected