| 189 | } |
| 190 | |
| 191 | type Thread struct { |
| 192 | Type string `json:"$type"` |
| 193 | Post Post `json:"post"` |
| 194 | Parent *Thread `json:"parent"` |
| 195 | Replies *[]Thread `json:"replies"` |
| 196 | } |
| 197 | |
| 198 | // This is solely for the purpose of unmarshalling the response from the API |
| 199 | type ThreadRoot struct { |
nothing calls this directly
no outgoing calls
no test coverage detected