You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gostorage/common.go

9 lines
207 B

package gostorage
// FileInfo 上传文件的信息
type FileInfo struct {
Path string `json:"path"` // 文件路径
Name string `json:"name"` // 文件名称
Url string `json:"url"` // 文件地址
}