mirror of
https://github.com/aykhans/slash-e.git
synced 2025-04-16 04:13:12 +00:00
8 lines
136 B
Go
8 lines
136 B
Go
package store
|
|
|
|
import "fmt"
|
|
|
|
func getUserSettingCacheKey(userID int32, key string) string {
|
|
return fmt.Sprintf("%d-%s", userID, key)
|
|
}
|