mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
645c4597e8
* feat: add get my password policy * fix: failed merges
18 lines
260 B
Go
18 lines
260 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserRepository
|
|
AuthRequestRepository
|
|
TokenRepository
|
|
ApplicationRepository
|
|
KeyRepository
|
|
UserSessionRepository
|
|
UserGrantRepository
|
|
PolicyRepository
|
|
}
|