mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
11 lines
249 B
Go
11 lines
249 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type TokenVerifierRepository interface {
|
||
|
VerifyAccessToken(ctx context.Context, appName string) (string, string, string, error)
|
||
|
ProjectIDByClientID(ctx context.Context, clientID string) (string, error)
|
||
|
}
|