A clean, Markdown-based publishing platform made for writers. Write together, and build a community. https://writefreely.org
No puede seleccionar más de 25 temas Los temas deben comenzar con una letra o número, pueden incluir guiones ('-') y pueden tener hasta 35 caracteres de largo.

12345678910
  1. package oauth
  2. import "context"
  3. // ClientStateStore provides state management used by the OAuth client.
  4. type ClientStateStore interface {
  5. Generate(ctx context.Context) (string, error)
  6. Validate(ctx context.Context, state string) error
  7. }