|
1234567891011121314 |
- package redis_key
-
- const PREFIX = "wechat"
-
- func WechatBindingUserIdKey(sceneStr string) string {
- return KeyJoin(PREFIX, sceneStr, "scene_userId")
- }
-
- func WechatAccessTokenKey() string {
- return KeyJoin(PREFIX, "access_token")
- }
- func AccessTokenLockKey() string {
- return KeyJoin(PREFIX, "access_token_lock")
- }
|