| 40 | ) |
| 41 | |
| 42 | type Manager struct { |
| 43 | adminStore AdminStore |
| 44 | sessions SessionStore |
| 45 | |
| 46 | failMu sync.Mutex |
| 47 | failures map[string]*loginAttempt // key: client IP |
| 48 | } |
| 49 | |
| 50 | type loginRequest struct { |
| 51 | Username string `json:"username"` |
nothing calls this directly
no outgoing calls
no test coverage detected