slash-e/store/cache.go
2023-06-21 08:51:15 +08:00

8 lines
134 B
Go

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