struct used to store auth service info
| 183 | |
| 184 | // struct used to store auth service info |
| 185 | type AuthService struct { |
| 186 | Config |
| 187 | kf keyfunc.Keyfunc |
| 188 | client *http.Client |
| 189 | introspectionURL string |
| 190 | issuer string |
| 191 | } |
| 192 | |
| 193 | // Returns the auth service type |
| 194 | func (a AuthService) AuthServiceType() string { |
nothing calls this directly
no outgoing calls
no test coverage detected