mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
62b654ea18
* feat: iam members in admin api * feat: add error id in translate error * fix: resolve merge conflicts
11 lines
158 B
Go
11 lines
158 B
Go
package repository
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
Health(ctx context.Context) error
|
|
OrgRepository
|
|
IamRepository
|
|
AdministratorRepository
|
|
}
|