8f982278d2
* add multimodule * re-package modules
15 lines
264 B
Go
15 lines
264 B
Go
package report
|
|
|
|
type Science struct {
|
|
Name string `json:"name"`
|
|
Drive Float `json:"drive"`
|
|
Weapons Float `json:"weapons"`
|
|
Shields Float `json:"shields"`
|
|
Cargo Float `json:"cargo"`
|
|
}
|
|
|
|
type OtherScience struct {
|
|
Race string `json:"race"`
|
|
Science
|
|
}
|