accounts/internal/cache/cache.go

7 lines
127 B
Go
Raw Permalink Normal View History

2025-08-19 12:49:05 +08:00
package cache
// Cache defines session cache behavior.
type Cache interface {
SetSession(token string, userID int64) error
}