mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-18 13:57: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
|
||
|
}
|