You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

11 lines
170 B

package dao
import "fmt"
func userInfoKey(mid int64) string {
return fmt.Sprintf("cache_tv_vip_ui_%d", mid)
}
func payParamKey(token string) string {
return token
}