mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-20 06:47:31 +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)
|
||
|
}
|