mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
11 lines
205 B
Go
11 lines
205 B
Go
|
package repository
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
"github.com/caos/zitadel/internal/user/model"
|
||
|
)
|
||
|
|
||
|
type UserSessionRepository interface {
|
||
|
GetMyUserSessions(ctx context.Context) ([]*model.UserSessionView, error)
|
||
|
}
|