Remove Item type in favor of just byte

This commit is contained in:
Marc Di Luzio 2020-06-26 23:41:36 +01:00
parent d08a15e201
commit e1bff92a56
4 changed files with 4 additions and 10 deletions

View file

@ -26,5 +26,5 @@ type Rover struct {
Attributes RoverAttributes `json:"attributes"`
// Inventory represents any items the rover is carrying
Inventory []Item `json:"inventory"`
Inventory []byte `json:"inventory"`
}