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.
tool/services/oss/ioss.go

12 lines
170 B

package oss
// IUpload 上传接口
type IUpload interface {
Upload(file []byte, filename string) (string, error)
}
// IOss oss接口
type IOss interface {
IUpload
}