Documentation ¶
Overview ¶
* @Author: CuiYao * @Date: 2022-01-28 10:15:24 * @Last Modified by: CuiYao * @Last Modified time: 2022-01-28 10:52:42
* @Author: CuiYao * @Date: 2021-12-22 14:23:18 * @Last Modified by: CuiYao * @Last Modified time: 2022-01-28 10:16:55
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
func MakeController ¶
Types ¶
type Controller ¶
type HoneWallpaper ¶
type HoneWallpaper struct {
URL string
}
type Minio ¶
type Minio interface { //路由 Route(g *echo.Group) //*******Bucket操作 //创建Bucket MakeBucket(c echo.Context) error //列出Bucket ListBucket(c echo.Context) error //Bucket是否存在 ExistsBucket(c echo.Context) error //删除Bucket Delete(c echo.Context) error //列出Bucket中的对象 ListObject(c echo.Context) error //******Object 对象操作 //文件下载 FGetObject(c echo.Context) error //文件上传 FPutObject(c echo.Context) error //流上传 PutObject(c echo.Context) error //流下载 GetObject(c echo.Context) error //获取URL GetObjectUrl(c echo.Context) error //删除对象 DeleteObject(c echo.Context) error }
Click to show internal directories.
Click to hide internal directories.