mirror of
https://github.com/yangjian102621/geekai.git
synced 2025-09-18 01:06:39 +08:00
10 lines
218 B
Go
10 lines
218 B
Go
package oss
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type Uploader interface {
|
|
PutFile(ctx *gin.Context, name string) (string, error)
|
|
PutImg(imageURL string, useProxy bool) (string, error)
|
|
Delete(fileURL string) error
|
|
}
|