mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
14 lines
364 B
Go
14 lines
364 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/view/model"
|
||
|
)
|
||
|
|
||
|
type AdministratorRepository interface {
|
||
|
GetFailedEvents(context.Context) ([]*model.FailedEvent, error)
|
||
|
RemoveFailedEvent(context.Context, *model.FailedEvent) error
|
||
|
GetViews(context.Context) ([]*model.View, error)
|
||
|
ClearView(ctx context.Context, db, view string) error
|
||
|
}
|