(repo string)
| 208 | } |
| 209 | |
| 210 | func (s *StatusGetter) ShouldExclude(repo string) bool { |
| 211 | return slices.Contains(s.Exclude, repo) |
| 212 | } |
| 213 | |
| 214 | func (s *StatusGetter) CurrentUsername() (string, error) { |
| 215 | s.usernameMu.Lock() |
no test coverage detected