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