mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +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
|
||
|
}
|