slash-e/store/cache.go
2023-08-02 08:41:56 +08:00

8 lines
136 B
Go

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