mirror of
https://github.com/writefreely/writefreely
synced 2024-11-10 11:24:13 +00:00
10 lines
240 B
Go
10 lines
240 B
Go
package oauth
|
|
|
|
import "context"
|
|
|
|
// ClientStateStore provides state management used by the OAuth client.
|
|
type ClientStateStore interface {
|
|
Generate(ctx context.Context) (string, error)
|
|
Validate(ctx context.Context, state string) error
|
|
}
|
|
|