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.
28 lines
506 B
28 lines
506 B
|
12 months ago
|
package pg3
|
||
|
|
|
||
|
|
const (
|
||
|
|
APIRlease = "https://openapi-ind.atgameapp.com/pub"
|
||
|
|
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{
|
||
|
|
"10025",
|
||
|
|
"E21B1CFF68CD984C6ADB25554BAF16C3",
|
||
|
|
}
|
||
|
|
AgentMapRelease = Agent{
|
||
|
|
"10025",
|
||
|
|
"E21B1CFF68CD984C6ADB25554BAF16C3",
|
||
|
|
}
|
||
|
|
)
|