mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-07-18 08:49:54 +00:00
12 lines
175 B
Go
12 lines
175 B
Go
package oidc
|
|
|
|
import (
|
|
"github.com/ory/fosite"
|
|
)
|
|
|
|
// Interface assertions
|
|
var (
|
|
_ fosite.Client = (*Client)(nil)
|
|
_ fosite.ResponseModeClient = (*Client)(nil)
|
|
)
|