印度包网
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
515 B

1 year ago
package pg2
const (
1 year ago
APIRlease = "https://openapi-ind.atgameapp.com/pub"
1 year ago
APITest = "https://openapi.windygame.net/demo"
LaunchGameURL = "/api/usr/ingame"
GetGameListURL = "/api/game/loadlist"
Lang = "en"
1 year ago
)
type Agent struct {
MchId string `json:"mch_id"`
Key string `json:"key"`
}
var (
API = ""
AgentMap Agent
AgentMapTest = Agent{
"10071",
"E3D1A83FA82F04D9725ACB5A77578A65",
1 year ago
}
1 year ago
AgentMapRelease = Agent{
11 months ago
"10050",
"BA7600F238327FB6B70FA91611D60378",
1 year ago
}
1 year ago
)