ClientStateStore provides state management used by the OAuth client.
| 4 | |
| 5 | // ClientStateStore provides state management used by the OAuth client. |
| 6 | type ClientStateStore interface { |
| 7 | Generate(ctx context.Context) (string, error) |
| 8 | Validate(ctx context.Context, state string) error |
| 9 | } |
nothing calls this directly
no outgoing calls
no test coverage detected