mirror of
https://github.com/zitadel/zitadel.git
synced 2025-03-01 11:57:23 +00:00
12 lines
172 B
Go
12 lines
172 B
Go
![]() |
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"github.com/caos/zitadel/internal/iam/model"
|
||
|
)
|
||
|
|
||
|
type IamRepository interface {
|
||
|
GetIam(ctx context.Context) (*model.Iam, error)
|
||
|
}
|