(picture string, ext ...string)
| 244 | } |
| 245 | |
| 246 | func GetImageFromCloudStore(picture string, ext ...string) (link string) { |
| 247 | cs, err := NewCloudStore(false) |
| 248 | if err != nil { |
| 249 | helper.Logger.Error(err.Error()) |
| 250 | } |
| 251 | return cs.getImageFromCloudStore(picture, ext...) |
| 252 | } |
| 253 | |
| 254 | //设置默认图片 |
| 255 | //@param picture 图片文件或者图片文件md5等 |
nothing calls this directly
no test coverage detected