mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 10:07:32 +00:00
9 lines
118 B
Go
9 lines
118 B
Go
![]() |
package repository
|
||
|
|
||
|
import "context"
|
||
|
|
||
|
type Repository interface {
|
||
|
Health(ctx context.Context) error
|
||
|
OrgRepository
|
||
|
}
|