mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 11:34:26 +00:00
21 lines
316 B
Go
21 lines
316 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserRepository
|
|
AuthRequestRepository
|
|
TokenRepository
|
|
ApplicationRepository
|
|
KeyRepository
|
|
UserSessionRepository
|
|
UserGrantRepository
|
|
OrgRepository
|
|
IAMRepository
|
|
FeaturesRepository
|
|
RefreshTokenRepository
|
|
}
|