// Package image ... // // Description : image ... // // Author : go_developer@163.com<白茶清欢> // // Date : 2021-11-29 2:27 下午 package image const ( // TypeGIF ... TypeGIF = "gif" // TypePNG ... TypePNG = "png" // TypeJPG ... TypeJPG = "jpg" // TypeJPEG ... TypeJPEG = "jpeg" ) // ImgInfo ... // // Author : go_developer@163.com<白茶清欢> // // Date : 2:45 下午 2021/11/29 type ImgInfo struct { Path string Type string }