| 139 | } |
| 140 | |
| 141 | type PostViewer struct { |
| 142 | Repost *string `json:"repost"` |
| 143 | Like *string `json:"like"` // Can someone please tell me why this is a string. |
| 144 | Muted bool `json:"muted"` |
| 145 | BlockedBy bool `json:"blockedBy"` |
| 146 | ThreadMute bool `json:"threadMute"` |
| 147 | ReplyDisabled bool `json:"replyDisabled"` |
| 148 | EmbeddingDisabled bool `json:"embeddingDisabled"` |
| 149 | Pinned bool `json:"pinned"` |
| 150 | } |
| 151 | type Post struct { |
| 152 | Subject |
| 153 | Author User `json:"author"` |
nothing calls this directly
no outgoing calls
no test coverage detected