(ctx context.Context, req *http.Request, hdrIn http.Header)
| 25 | // auth) implement this as a no-op. |
| 26 | type AuthProvider interface { |
| 27 | Apply(ctx context.Context, req *http.Request, hdrIn http.Header) error |
| 28 | OnUnauthorized(ctx context.Context) error |
| 29 | } |
| 30 |
no outgoing calls