| 71 | } |
| 72 | |
| 73 | type PostRecord struct { |
| 74 | Type string `json:"$type"` |
| 75 | CreatedAt FTime `json:"createdAt"` |
| 76 | Embed Embed `json:"embed,omitempty"` |
| 77 | Facets []Facet `json:"facets,omitempty"` |
| 78 | Langs []string `json:"langs,omitempty"` |
| 79 | Text string `json:"text,omitempty"` |
| 80 | Reply *ReplySubject `json:"reply,omitempty"` |
| 81 | } |
| 82 | |
| 83 | // Specifically for reposts |
| 84 | type PostReason struct { |
nothing calls this directly
no outgoing calls
no test coverage detected