Define our struct
| 9 | |
| 10 | // Define our struct |
| 11 | type authenticationMiddleware struct { |
| 12 | tokenUsers map[string]string |
| 13 | } |
| 14 | |
| 15 | // Initialize it somewhere |
| 16 | func (amw *authenticationMiddleware) Populate() { |
nothing calls this directly
no outgoing calls
no test coverage detected