Start work on likes/reactions
Some checks failed
/ docker (push) Failing after 1m35s

This commit is contained in:
Melody Becker 2025-06-13 16:45:28 +02:00
parent 8d2e008125
commit 4b62c32247
Signed by: mstar
SSH key fingerprint: SHA256:9VAo09aaVNTWKzPW7Hq2LW+ox9OdwmTSHRoD4mlz1yI
4 changed files with 77 additions and 2 deletions

View file

@ -13,8 +13,15 @@ import (
type Tag struct {
Type string `json:"type"`
Href string `json:"href"`
Name string `json:"name"`
// ---- Section Hashtag & Mention
Href *string `json:"href,omitempty"`
// Section Emote
Id *string `json:"id,omitempty"`
Updated *time.Time `json:"updated,omitempty"`
Icon *Media `json:"icon,omitempty"`
}
type ObjectNote struct {