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

25 lines
463 B

1 year ago
package pg2
const (
APIRlease = "https://openapi-br.atgameapp.com/pub"
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{
"10055",
"170779CCC5E9FE29DBB3F5FEDBB304A0",
1 year ago
}
AgentMapRelease = Agent{}
1 year ago
)