aboutsummaryrefslogtreecommitdiff
path: root/data.go
diff options
context:
space:
mode:
Diffstat (limited to 'data.go')
-rw-r--r--data.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/data.go b/data.go
index e250d78..174b104 100644
--- a/data.go
+++ b/data.go
@@ -48,10 +48,10 @@ 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"`