| 149 | Pinned bool `json:"pinned"` |
| 150 | } |
| 151 | type Post struct { |
| 152 | Subject |
| 153 | Author User `json:"author"` |
| 154 | Record PostRecord `json:"record"` |
| 155 | // Embed Embed `json:"embed"` |
| 156 | ReplyCount int `json:"replyCount"` |
| 157 | RepostCount int `json:"repostCount"` |
| 158 | LikeCount int `json:"likeCount"` |
| 159 | QuoteCount int `json:"quoteCount"` |
| 160 | IndexedAt time.Time `json:"indexedAt"` |
| 161 | Viewer PostViewer `json:"viewer"` |
| 162 | } |
| 163 | |
| 164 | type Feed struct { |
| 165 | Post Post `json:"post"` |
nothing calls this directly
no outgoing calls
no test coverage detected