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