| 19 | } |
| 20 | |
| 21 | type Video struct { |
| 22 | Url string `json:"url"` |
| 23 | Width int `json:"width"` |
| 24 | Height int `json:"height"` |
| 25 | Thumbnail interface{} `json:"thumbnail"` |
| 26 | } |
| 27 | |
| 28 | type UploadReq struct { |
| 29 | Url string `json:"url"` // support public url & base64 |
nothing calls this directly
no outgoing calls
no test coverage detected