Implemented first pass of character and inventory services
This commit is contained in:
@ -19,4 +19,9 @@ var Character = Type("character", func() {
|
||||
Field(3, "description", String)
|
||||
Field(4, "class", String)
|
||||
Required("name", "description", "class")
|
||||
})
|
||||
})
|
||||
|
||||
var InventoryRecord = Type("inventoryRecord", func() {
|
||||
Field(1, "characterId", Int)
|
||||
Field(2, "itemId", Int)
|
||||
})
|
||||
|
Reference in New Issue
Block a user