feat(data): tags

This commit is contained in:
Anhgelus Morhtuuzh 2024-11-12 17:21:46 +01:00
parent e59feeba35
commit 64c8ae31ff
No known key found for this signature in database
GPG key ID: CAD341EFA92DDDE5
4 changed files with 31 additions and 2 deletions

View file

@ -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 {