mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
87560157c1
* fix: change to repository event types and removed unused code * some fixes * remove unused code
10 lines
161 B
Go
10 lines
161 B
Go
package repository
|
|
|
|
import (
|
|
"context"
|
|
)
|
|
|
|
type UserRepository interface {
|
|
UserSessionUserIDsByAgentID(ctx context.Context, agentID string) ([]string, error)
|
|
}
|