mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
01501c5087
* fix: only show factors with state ready * fix: get iam by id and clean up code * fix: get iam by id and clean up code * fix: remove unused code
18 lines
266 B
Go
18 lines
266 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserRepository
|
|
AuthRequestRepository
|
|
TokenRepository
|
|
ApplicationRepository
|
|
UserSessionRepository
|
|
UserGrantRepository
|
|
OrgRepository
|
|
RefreshTokenRepository
|
|
}
|