세션 삭제용 구조체 선언

This commit is contained in:
2025-09-11 11:30:10 +09:00
parent 0392966760
commit e67009522d
2 changed files with 24 additions and 24 deletions

View File

@ -57,8 +57,9 @@ type Provider interface {
}
type InvalidatedSession struct {
Account primitive.ObjectID
Infinite bool
Account primitive.ObjectID
SessionKeys []string
Infinite bool
}
type Consumer interface {