aboutsummaryrefslogtreecommitdiff
path: root/renderer/model.go
diff options
context:
space:
mode:
Diffstat (limited to 'renderer/model.go')
-rw-r--r--renderer/model.go15
1 files changed, 10 insertions, 5 deletions
diff --git a/renderer/model.go b/renderer/model.go
index ffeb2d1..12fa90f 100644
--- a/renderer/model.go
+++ b/renderer/model.go
@@ -92,10 +92,15 @@ type RetweetedByData struct {
type SearchData struct {
*CommonData
- Q string
- Type string
- Users []*mastodon.Account
- Statuses []*mastodon.Status
- HasNext bool
+ Q string
+ Type string
+ Users []*mastodon.Account
+ Statuses []*mastodon.Status
+ HasNext bool
NextLink string
}
+
+type SettingsData struct {
+ *CommonData
+ Settings *model.Settings
+}