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", } )