10 lines
263 B
Go
10 lines
263 B
Go
|
|
package infinitecraft
|
||
|
|
|
||
|
|
type Item struct {
|
||
|
|
Id int32 `json:"id"`
|
||
|
|
Text string `json:"text" db:"name"`
|
||
|
|
Emoji string `json:"emoji"`
|
||
|
|
Discovery bool `json:"discovery,omitempty"`
|
||
|
|
Recipes [][]int32 `json:"recipes,omitempty" db:"-"`
|
||
|
|
}
|