mirror of
https://gitee.com/XM-GO/PandaX.git
synced 2026-04-23 10:58:35 +08:00
16 lines
289 B
Go
16 lines
289 B
Go
package oss
|
|
|
|
import "io"
|
|
|
|
// Driver oss驱动接口定义
|
|
type Driver interface {
|
|
//上传
|
|
Put(objectName, localFileName string) error
|
|
|
|
PutObj(objectName string, file io.Reader) error
|
|
//下载
|
|
Get(objectName, downloadedFileName string) error
|
|
//删除
|
|
Del(objectName string) error
|
|
}
|