porder.go 362 B

1234567891011121314151617181920
  1. package porder
  2. // OfficialIndustryMaps map
  3. var OfficialIndustryMaps = map[int64]int64{
  4. 1: 1,
  5. }
  6. // Config str
  7. type Config struct {
  8. ID int64 `json:"id"`
  9. Tp int8 `json:"type"`
  10. Name string `json:"name"`
  11. }
  12. // Game str
  13. type Game struct {
  14. GameBaseID int64 `json:"game_base_id"`
  15. GameName string `json:"game_name"`
  16. Source int8 `json:"source"`
  17. }