Nuke all storage computation
Doesn't fucking work
This commit is contained in:
24
esi/types.go
24
esi/types.go
@@ -15,13 +15,16 @@ type Link struct {
|
||||
}
|
||||
|
||||
type Pin struct {
|
||||
Contents []Content `json:"contents"`
|
||||
LastCycleStart *time.Time `json:"last_cycle_start,omitempty"`
|
||||
Latitude float64 `json:"latitude"`
|
||||
Longitude float64 `json:"longitude"`
|
||||
PinID int64 `json:"pin_id"`
|
||||
TypeID int64 `json:"type_id"`
|
||||
SchematicID *int64 `json:"schematic_id,omitempty"`
|
||||
Contents []Content `json:"contents"`
|
||||
Latitude float64 `json:"latitude"`
|
||||
Longitude float64 `json:"longitude"`
|
||||
PinID int64 `json:"pin_id"`
|
||||
TypeID int64 `json:"type_id"`
|
||||
LastCycleStart *time.Time `json:"last_cycle_start,omitempty"`
|
||||
SchematicID *int64 `json:"schematic_id,omitempty"`
|
||||
ExpiryTime *time.Time `json:"expiry_time,omitempty"`
|
||||
ExtractorDetails *ExtractorDetails `json:"extractor_details,omitempty"`
|
||||
InstallTime *time.Time `json:"install_time,omitempty"`
|
||||
}
|
||||
|
||||
type Content struct {
|
||||
@@ -49,3 +52,10 @@ type Planet struct {
|
||||
SolarSystemID int64 `json:"solar_system_id"`
|
||||
UpgradeLevel int64 `json:"upgrade_level"`
|
||||
}
|
||||
|
||||
type ExtractorDetails struct {
|
||||
CycleTime int64 `json:"cycle_time"`
|
||||
HeadRadius float64 `json:"head_radius"`
|
||||
ProductTypeID int64 `json:"product_type_id"`
|
||||
QtyPerCycle int64 `json:"qty_per_cycle"`
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user