aboutsummaryrefslogtreecommitdiff
path: root/data.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-12 17:21:46 +0100
committerAnhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me>2024-11-12 17:21:46 +0100
commit64c8ae31ff131e9d1071abeda55a1c1cb2bf5125 (patch)
tree3931ed142716e8566ee12537e62ff0a3237f16ab /data.go
parente59feeba358683dcaf01cd678e9754f91d99cca5 (diff)
feat(data): tags
Diffstat (limited to 'data.go')
-rw-r--r--data.go6
1 files changed, 6 insertions, 0 deletions
diff --git a/data.go b/data.go
index 2b755bb..c4f9354 100644
--- a/data.go
+++ b/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 {