(ctx context.Context, req pluginapi.AuthRefreshRequest)
| 3180 | } |
| 3181 | |
| 3182 | func (p fakeAuthProvider) RefreshAuth(ctx context.Context, req pluginapi.AuthRefreshRequest) (pluginapi.AuthRefreshResponse, error) { |
| 3183 | if p.refreshAuth == nil { |
| 3184 | return pluginapi.AuthRefreshResponse{}, nil |
| 3185 | } |
| 3186 | return p.refreshAuth(ctx, req) |
| 3187 | } |
| 3188 | |
| 3189 | type modelRegistrarFunc func(context.Context, pluginapi.ModelRegistrationRequest) (pluginapi.ModelRegistrationResponse, error) |
| 3190 |
nothing calls this directly
no test coverage detected