mirror of
https://github.com/iLoveElysia/openbilibili.git
synced 2026-09-02 07:38:04 -05:00
11 lines
225 B
Go
11 lines
225 B
Go
|
|
package model
|
||
|
|
|
||
|
|
//缓存key常量
|
||
|
|
const (
|
||
|
|
CacheKeyUserShareToken = "user:share:token:%d" //用户分享token
|
||
|
|
CacheExpireUserShareToken = 600
|
||
|
|
|
||
|
|
CacheKeyLastPubtime = "%d:last:pubtime"
|
||
|
|
CacheExpireLastPubtime = 432000
|
||
|
|
)
|