mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-04 13:07:05 +00:00

* feat: get views and failed events * feat: get views and failed events * feat: get views and failed events * Update internal/view/repository/sequence.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> * Update internal/view/repository/general_query.go Co-authored-by: Livio Amstutz <livio.a@gmail.com> Co-authored-by: Livio Amstutz <livio.a@gmail.com>
10 lines
143 B
Go
10 lines
143 B
Go
package repository
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
Health(ctx context.Context) error
|
|
OrgRepository
|
|
AdministratorRepository
|
|
}
|