| 162 | } |
| 163 | |
| 164 | type Feed struct { |
| 165 | Post Post `json:"post"` |
| 166 | Reply struct { |
| 167 | Root Post `json:"root"` |
| 168 | Parent Post `json:"parent"` |
| 169 | } `json:"reply"` |
| 170 | Reason *PostReason `json:"reason"` |
| 171 | FeedContext string `json:"feedContext"` |
| 172 | } |
| 173 | |
| 174 | type Timeline struct { |
| 175 | Feed []Feed `json:"feed"` |
nothing calls this directly
no outgoing calls
no test coverage detected