diff options
author | Julien Dessaux | 2025-02-21 00:58:45 +0100 |
---|---|---|
committer | Julien Dessaux | 2025-02-21 00:58:45 +0100 |
commit | e887213affbf2b1e6804d5d2cd86417c881249ba (patch) | |
tree | f28bd776cde0f2674484f18598069e9c0342b542 /golang/pkg/model/shipyard.go | |
parent | [golang] refactored the api client to reduce the amount of db pointer shuffli... (diff) | |
download | spacetraders-e887213affbf2b1e6804d5d2cd86417c881249ba.tar.gz spacetraders-e887213affbf2b1e6804d5d2cd86417c881249ba.tar.bz2 spacetraders-e887213affbf2b1e6804d5d2cd86417c881249ba.zip |
[golang] finished implementing procument contracts
Diffstat (limited to '')
-rw-r--r-- | golang/pkg/model/shipyard.go | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/golang/pkg/model/shipyard.go b/golang/pkg/model/shipyard.go index 2ba2e95..4140d44 100644 --- a/golang/pkg/model/shipyard.go +++ b/golang/pkg/model/shipyard.go @@ -3,11 +3,11 @@ package model import "time" type Shipyard struct { - ModificationFee int `json:"modificationFee"` - Symbol string `json:"symbol"` - ShipTypes []CommonType `json:"shipTypes"` - Transactions []ShipyardTransaction `json:"transactions"` - Ships []ShipyardShip `json:"ships"` + ModificationFee int `json:"modificationFee"` + Symbol string `json:"symbol"` + ShipTypes []CommonType `json:"shipTypes"` + //Transactions []ShipyardTransaction `json:"transactions"` + Ships []ShipyardShip `json:"ships"` } type ShipyardShip struct { |