mirror of
https://github.com/usememos/memos.git
synced 2024-12-19 09:02:49 +03:00
10 lines
141 B
Go
10 lines
141 B
Go
package store
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func getUserSettingCacheKey(userID int32, key string) string {
|
|
return fmt.Sprintf("%d-%s", userID, key)
|
|
}
|