mirror of
https://github.com/yourselfhosted/slash.git
synced 2025-06-05 22:09:34 +02: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)
|
|
}
|