mirror of
https://github.com/pocket-id/pocket-id.git
synced 2026-08-24 21:17:31 +00:00
Co-authored-by: Alessandro (Ale) Segala <43508+ItalyPaleAle@users.noreply.github.com>
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)
|
|
)
|