zitadel/internal/authz/repository/repository.go
Fabi b363ddd707
feat: Iam projection (#3074)
* feat: implement projection for iam and clean up code

* feat: add migration

* fix: remove unused tests

* fix: handler
2022-01-21 08:52:12 +01:00

11 lines
125 B
Go

package repository
import (
"context"
)
type Repository interface {
Health(context.Context) error
UserGrantRepository
}