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.
27 lines
492 B
27 lines
492 B
package pg4 |
|
|
|
const ( |
|
APIRelease = "https://pggame.ux7k.com" |
|
APITest = "https://pggame.1iibet.com" |
|
LaunchGameURL = "/api/usr/ingame" |
|
GetGameListURL = "/api/game/loadlist" |
|
Lang = "en" |
|
) |
|
|
|
type Agent struct { |
|
MchId string `json:"mch_id"` |
|
Key string `json:"key"` |
|
} |
|
|
|
var ( |
|
API = "" |
|
AgentMap Agent |
|
AgentMapTest = Agent{ |
|
"10087", |
|
"12DD45A2758A9AEA0224DB8B7F8A36E3", |
|
} |
|
AgentMapRelease = Agent{ |
|
"10088", |
|
"E21B1CFF68CD984C6ADB25554BAF16C3", |
|
} |
|
)
|
|
|