mirror of
https://github.com/zitadel/zitadel.git
synced 2025-08-11 23:07:32 +00:00
10 lines
150 B
Go
10 lines
150 B
Go
package repository
|
|
|
|
import "context"
|
|
|
|
type Repository interface {
|
|
Health(context.Context) error
|
|
UserMembershipRepository
|
|
TokenVerifierRepository
|
|
}
|