feat(data): tags
This commit is contained in:
parent
e59feeba35
commit
64c8ae31ff
4 changed files with 31 additions and 2 deletions
6
data.go
6
data.go
|
@ -19,6 +19,12 @@ type Person struct {
|
|||
Name string `json:"name"`
|
||||
Pronouns string `json:"pronouns"`
|
||||
Image string `json:"image"`
|
||||
Tags []*Tag `json:"tags"`
|
||||
}
|
||||
|
||||
type Tag struct {
|
||||
Name string `json:"name"`
|
||||
Description string `json:"description"`
|
||||
}
|
||||
|
||||
type Color struct {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue