(projectID string, sheetSha256 string)
| 592 | } |
| 593 | |
| 594 | func FormatSheet(projectID string, sheetSha256 string) string { |
| 595 | return fmt.Sprintf("%s/%s%s", FormatProject(projectID), SheetIDPrefix, sheetSha256) |
| 596 | } |
| 597 | |
| 598 | func FormatIssue(projectID string, issueUID int64) string { |
| 599 | return fmt.Sprintf("%s/%s%d", FormatProject(projectID), IssueNamePrefix, issueUID) |
no test coverage detected