accounts/internal/cache/cache.go
Haitao Pan ee6e1a6363 feat: move account service to repo root
# Conflicts:
#	account/Makefile
#	account/go.mod
#	docs/account-admin-settings.md
#	docs/account-svc-plus.md
2026-01-16 16:15:23 +08:00

7 lines
127 B
Go

package cache
// Cache defines session cache behavior.
type Cache interface {
SetSession(token string, userID int64) error
}