15 lines
624 B
Go
15 lines
624 B
Go
package consts
|
|
|
|
const (
|
|
SystemReward = iota + 1
|
|
StoreReward
|
|
)
|
|
|
|
var PlatformRewards = map[int]string{
|
|
12: "https://api-test.nes.smoba.qq.com/pvpesport.sgamenes.commcgi.commcgi/GetExplatSecret", // Q币
|
|
16: "https://api.nes.smoba.qq.com/pvpesport.sgamenes.commcgi.commcgi/GetExplatSecret", // 虚拟道具
|
|
31: "https://api.nes.smoba.qq.com/pvpesport.sgamenes.commcgi.commcgi/GetExplatSecret", // 宝箱
|
|
22: "https://api.nes.smoba.qq.com/pvpesport.sgamenes.commcgi.commcgi/GetExplatSecret", // 红包
|
|
11: "https://api.nes.smoba.qq.com/pvpesport.sgamenes.commcgi.commcgi/GetExplatSecret", // 实物
|
|
}
|