mirror of
https://github.com/zitadel/zitadel.git
synced 2025-11-16 00:23:35 +00:00
12 lines
205 B
Go
12 lines
205 B
Go
|
|
package repository
|
||
|
|
|
||
|
|
import (
|
||
|
|
"context"
|
||
|
|
|
||
|
|
"github.com/caos/zitadel/internal/api/authz"
|
||
|
|
)
|
||
|
|
|
||
|
|
type UserMembershipRepository interface {
|
||
|
|
SearchMyMemberships(ctx context.Context) ([]*authz.Membership, error)
|
||
|
|
}
|