mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 19:14:23 +00:00
12 lines
218 B
Go
12 lines
218 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/iam/model"
|
||
|
)
|
||
|
|
||
|
type IamRepository interface {
|
||
|
Health(ctx context.Context) error
|
||
|
IamByID(ctx context.Context, id string) (*model.Iam, error)
|
||
|
}
|