aboutsummaryrefslogtreecommitdiff
path: root/data.go
diff options
context:
space:
mode:
authorAnhgelus Morhtuuzh <william@herges.fr>2025-09-07 14:55:39 +0000
committerAnhgelus Morhtuuzh <william@herges.fr>2025-09-07 14:55:39 +0000
commit3a809d2571f8df178c436f463c9aade25a34c96e (patch)
tree6a4a0485b5650320afe5c1c2e61e9a8987db83a3 /data.go
parente8da79df02b9045146e2a0cb9e035f14a68537c6 (diff)
parent14f30577f9b5f76d288abce6ba19bf6150936401 (diff)
Merge pull request '[Feat] Change tags in now' (#1) from feat/change-tags into main
Reviewed-on: https://git.anhgelus.world/anhgelus/now/pulls/1
Diffstat (limited to 'data.go')
-rw-r--r--data.go5
1 files changed, 3 insertions, 2 deletions
diff --git a/data.go b/data.go
index fccaec3..174b104 100644
--- a/data.go
+++ b/data.go
@@ -48,13 +48,14 @@ type Person struct {
Name string `json:"name" toml:"name"`
Pronouns string `json:"pronouns" toml:"pronouns"`
Image string `json:"image" toml:"image"`
- Tags []*Tag `json:"tags" toml:"tags"`
+ Now []*Now `json:"now" toml:"now"`
}
-type Tag struct {
+type Now struct {
Name string `json:"name" toml:"name"`
Description string `json:"description" toml:"description"`
Link string `json:"link" toml:"link"`
+ LinkName string `json:"link_name" toml:"link_name"`
}
type Color struct {