mirror of
https://github.com/usememos/memos.git
synced 2024-12-27 15:42:51 +08:00
b44f2b5ffb
* chore: migrate to api v1 package * chore: update
9 lines
141 B
Go
9 lines
141 B
Go
package store
|
|
|
|
import (
|
|
"fmt"
|
|
)
|
|
|
|
func getUserSettingCacheKeyV1(userID int, key string) string {
|
|
return fmt.Sprintf("%d-%s", userID, key)
|
|
}
|