Add support for hyperlinks

This commit is contained in:
2026-02-13 20:42:53 +01:00
parent ea91e2a16e
commit fbf75c88b3
3 changed files with 56 additions and 17 deletions

View File

@@ -30,10 +30,11 @@ type Module struct {
}
type ModuleItem struct {
Title string `json:"title"`
Type string `json:"type"`
URL string `json:"url"`
HTMLURL string `json:"html_url"`
ContentID int `json:"content_id"`
Indent int `json:"indent"`
Title string `json:"title"`
Type string `json:"type"`
URL string `json:"url"`
HTMLURL string `json:"html_url"`
ExternalURL string `json:"external_url"`
ContentID int `json:"content_id"`
Indent int `json:"indent"`
}