| 509 | } |
| 510 | |
| 511 | type authUserStorage struct { |
| 512 | lock *sync.Mutex |
| 513 | users map[string]AuthUser |
| 514 | } |
| 515 | |
| 516 | func (a *authUserStorage) AddUser(username string) AuthUser { |
| 517 | a.lock.Lock() |
nothing calls this directly
no outgoing calls
no test coverage detected