mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 01:08:24 +08:00
15 lines
275 B
Go
15 lines
275 B
Go
package oss
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type File struct {
|
|
Size int64
|
|
URL string
|
|
Ext string
|
|
}
|
|
type Uploader interface {
|
|
PutFile(ctx *gin.Context, name string) (File, error)
|
|
PutImg(imageURL string, useProxy bool) (string, error)
|
|
Delete(fileURL string) error
|
|
}
|