Update character datatype

This commit is contained in:
2020-12-27 02:26:20 -05:00
parent 22199a5c0a
commit 649a4ef882
2 changed files with 7 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ package datatypes
// User is an object representing a user
type User struct {
UID string `json:"uid"`
OwnedSkins Skins `json:"skins"`
UID string `json:"uid"`
OwnedSkins Skins `json:"skins"`
Characters Characters `json:"characters"`
}