mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
9ab566fdeb
* fix: add keys to projections * change to multiple tables * query keys * query keys * fix race condition * fix timer reset * begin tests * tests * remove migration * only send to keyChannel if not nil
19 lines
281 B
Go
19 lines
281 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserRepository
|
|
AuthRequestRepository
|
|
TokenRepository
|
|
ApplicationRepository
|
|
UserSessionRepository
|
|
UserGrantRepository
|
|
OrgRepository
|
|
IAMRepository
|
|
RefreshTokenRepository
|
|
}
|