memos/store/cache.go
2023-12-08 22:41:47 +08:00

10 lines
146 B
Go

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