(c *stream.Client, cmd *cobra.Command, chType, chID, userID, filePath string)
| 16 | ) |
| 17 | |
| 18 | func UploadFile(c *stream.Client, cmd *cobra.Command, chType, chID, userID, filePath string) (string, error) { |
| 19 | return uploadFile(c, cmd, uploadTypeFile, chType, chID, userID, filePath) |
| 20 | } |
| 21 | |
| 22 | func UploadImage(c *stream.Client, cmd *cobra.Command, chType, chID, userID, filePath string) (string, error) { |
| 23 | return uploadFile(c, cmd, uploadTypeImage, chType, chID, userID, filePath) |
no test coverage detected