BasicStrategy defines Basic authentication strategy.
| 18 | |
| 19 | // BasicStrategy defines Basic authentication strategy. |
| 20 | type BasicStrategy struct { |
| 21 | compare func(username string, password string) bool |
| 22 | } |
| 23 | |
| 24 | var _ middleware.AuthStrategy = &BasicStrategy{} |
| 25 |
nothing calls this directly
no outgoing calls
no test coverage detected