(repo string)
| 206 | } |
| 207 | |
| 208 | func (s *StatusGetter) ShouldExclude(repo string) bool { |
| 209 | for _, exclude := range s.Exclude { |
| 210 | if repo == exclude { |
| 211 | return true |
| 212 | } |
| 213 | } |
| 214 | return false |
| 215 | } |
| 216 | |
| 217 | func (s *StatusGetter) CurrentUsername() (string, error) { |
| 218 | s.usernameMu.Lock() |
no outgoing calls
no test coverage detected