(installationID int64, repoID *int64)
| 453 | } |
| 454 | |
| 455 | func installationCacheKey(installationID int64, repoID *int64) string { |
| 456 | if repoID != nil { |
| 457 | return fmt.Sprintf("%d-%d", installationID, *repoID) |
| 458 | } |
| 459 | return fmt.Sprintf("%d", installationID) |
| 460 | } |