diff --git a/mastodon.go b/mastodon.go index 2919e66..a8660ab 100644 --- a/mastodon.go +++ b/mastodon.go @@ -135,3 +135,9 @@ type Attachment struct { PreviewURL string `json:"preview_url"` TextURL string `json:"text_url"` } + +type Results struct { + Accounts []*Account `json:"accounts"` + Statuses []*Status `json:"statuses"` + Hashtags []string `json:"hashtags"` +}