18 lines
280 B
Go
18 lines
280 B
Go
package consts
|
|
|
|
// 用户
|
|
const (
|
|
UserBindPhoneKey = "user:bindPhone:%d"
|
|
UserCodeExpire = 5 * 60
|
|
)
|
|
|
|
const (
|
|
GameLifeUserKey = "gamelife:user:%s"
|
|
GameLifeUserExpire = 2 * 60 * 60
|
|
)
|
|
|
|
const (
|
|
WeChatLoginCache = "wx:login:cache:%s"
|
|
WeChatLoginLimit = "wx:login:limit:%s"
|
|
)
|