memos/store/cache.go

10 lines
141 B
Go
Raw Normal View History

2022-08-07 03:09:43 +03:00
package store
import (
"fmt"
)
func getUserSettingCacheKeyV1(userID int, key string) string {
return fmt.Sprintf("%d-%s", userID, key)
2022-08-07 03:09:43 +03:00
}