Files
memos/store/cache.go
T
2026-07-02 19:14:14 +08:00

10 lines
141 B
Go

package store
import (
"fmt"
)
func getUserSettingCacheKey(userID int32, key string) string {
return fmt.Sprintf("%d-%s", userID, key)
}