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.
24 lines
471 B
24 lines
471 B
package jili2 |
|
|
|
const ( |
|
APIRlease = "https://openapi-br.atgameapp.com/pub" |
|
APITest = "https://api.jgameworks.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{ |
|
MchId: "10017", |
|
Key: "C54E411A1B89C54BFB977EBAA7BB1D39", |
|
} |
|
AgentMapRelease = Agent{} |
|
)
|
|
|