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.
|
|
|
|
package pg2
|
|
|
|
|
|
|
|
|
|
const (
|
|
|
|
|
APIRlease = "https://openapi-ind.atgameapp.com/pub"
|
|
|
|
|
APITest = "https://openapi.windygame.net/demo"
|
|
|
|
|
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{
|
|
|
|
|
"10071",
|
|
|
|
|
"E3D1A83FA82F04D9725ACB5A77578A65",
|
|
|
|
|
}
|
|
|
|
|
AgentMapRelease = Agent{
|
|
|
|
|
"10050",
|
|
|
|
|
"BA7600F238327FB6B70FA91611D60378",
|
|
|
|
|
}
|
|
|
|
|
)
|