mirror of
https://github.com/zitadel/zitadel.git
synced 2025-04-21 22:11:44 +00:00
13 lines
160 B
Go
13 lines
160 B
Go
![]() |
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
)
|
||
|
|
||
|
type Repository interface {
|
||
|
Health(context.Context) error
|
||
|
UserRepository
|
||
|
AuthRequestRepository
|
||
|
TokenRepository
|
||
|
}
|