mirror of
https://gitee.com/blackfox/geekai.git
synced 2025-12-07 01:08:24 +08:00
9 lines
160 B
Go
9 lines
160 B
Go
package oss
|
|
|
|
import "github.com/gin-gonic/gin"
|
|
|
|
type Uploader interface {
|
|
PutFile(ctx *gin.Context) (string, error)
|
|
PutImg(imageURL string) (string, error)
|
|
}
|