mirror of
https://github.com/zitadel/zitadel.git
synced 2025-07-16 01:48:39 +00:00

* fix: move eventstore pkgs * fix: move eventstore pkgs * fix: remove v2 view * fix: remove v2 view
17 lines
338 B
Go
17 lines
338 B
Go
package eventstore
|
|
|
|
import (
|
|
"context"
|
|
"github.com/caos/zitadel/internal/query"
|
|
|
|
iam_model "github.com/caos/zitadel/internal/iam/model"
|
|
)
|
|
|
|
type IAMRepository struct {
|
|
IAMV2Query *query.QuerySide
|
|
}
|
|
|
|
func (repo *IAMRepository) IAMByID(ctx context.Context, id string) (*iam_model.IAM, error) {
|
|
return repo.IAMV2Query.IAMByID(ctx, id)
|
|
}
|