(auths map[string]*coreauth.Auth)
| 330 | } |
| 331 | |
| 332 | func authIDSet(auths map[string]*coreauth.Auth) map[string]*coreauth.Auth { |
| 333 | set := make(map[string]*coreauth.Auth, len(auths)) |
| 334 | for id := range auths { |
| 335 | set[id] = nil |
| 336 | } |
| 337 | return set |
| 338 | } |
| 339 | |
| 340 | func (w *Watcher) loadFileClients(cfg *config.Config) int { |
| 341 | authFileCount := 0 |
no outgoing calls
no test coverage detected