mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 10:27:24 +00:00
13 lines
306 B
Go
13 lines
306 B
Go
![]() |
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/project/model"
|
||
|
)
|
||
|
|
||
|
type ApplicationRepository interface {
|
||
|
ApplicationByClientID(ctx context.Context, clientID string) (*model.ApplicationView, error)
|
||
|
AuthorizeOIDCApplication(ctx context.Context, clientID, secret string) error
|
||
|
}
|