feat: used correct datatype for Tags
Signed-off-by: SoXX <soxx@fenpa.ws>
This commit is contained in:
parent
ed31beea86
commit
5327d1bc0f
@ -82,12 +82,12 @@ type Score struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
type Tags struct {
|
type Tags struct {
|
||||||
General []string `json:"general"`
|
General []string `json:"general"`
|
||||||
Artist []string `json:"artist"`
|
Artist []string `json:"artist"`
|
||||||
Copyright []interface{} `json:"copyright"`
|
Copyright []string `json:"copyright"`
|
||||||
Character []string `json:"character"`
|
Character []string `json:"character"`
|
||||||
Species []string `json:"species"`
|
Species []string `json:"species"`
|
||||||
Invalid []interface{} `json:"invalid"`
|
Invalid []string `json:"invalid"`
|
||||||
Meta []string `json:"meta"`
|
Meta []string `json:"meta"`
|
||||||
Lore []interface{} `json:"lore"`
|
Lore []string `json:"lore"`
|
||||||
}
|
}
|
||||||
|
Reference in New Issue
Block a user