mirror of
https://github.com/usememos/memos.git
synced 2024-11-10 17:02:21 +08:00
9 lines
146 B
Go
9 lines
146 B
Go
package store
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func getUserSettingV1CacheKey(userID int32, key string) string {
|
|
return fmt.Sprintf("%d-%s-v1", userID, key)
|
|
}
|