书籍列表接口新增参数

This commit is contained in:
2025-08-13 15:19:42 +08:00
parent 6ccc87f2bf
commit 8afe651c64
201 changed files with 6987 additions and 1066 deletions

View File

@ -1,7 +1,9 @@
package oss
import "github.com/gogf/gf/v2/net/ghttp"
type OSSClient interface {
Upload(file interface{}) (string, error)
Upload(file *ghttp.UploadFile, folder string) (string, error)
UploadLocalFile(path, name string) (string, error)
}