| 340 | } |
| 341 | |
| 342 | type ListInfo struct { |
| 343 | URI string `json:"uri"` |
| 344 | CID string `json:"cid"` |
| 345 | Creator User `json:"creator"` |
| 346 | Name string `json:"name"` |
| 347 | // ignoring purpose |
| 348 | |
| 349 | Description string `json:"description"` |
| 350 | DescriptionFacets []Facet `json:"descriptionFacets"` |
| 351 | Avatar string `json:"avatar"` |
| 352 | ListItemCount int `json:"listItemCount"` |
| 353 | IndexedAt time.Time `json:"indexedAt"` |
| 354 | Viewer PostViewer `json:"viewer"` |
| 355 | } |
| 356 | |
| 357 | type ListItem struct { |
| 358 | URI string `json:"uri"` |
nothing calls this directly
no outgoing calls
no test coverage detected