1 Star 0 Fork 0

cherryRed/common

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
minio.go 678 Bytes
一键复制 编辑 原始数据 按行查看 历史
chenyi 提交于 2023-10-21 16:35 . add user login
package minio
import (
"fmt"
"github.com/minio/minio-go/v7"
"github.com/minio/minio-go/v7/pkg/credentials"
)
type Config struct {
Endpoint string `json:"endpoint"`
AccessKey string `json:"accessKey"`
SecretAccessKey string `json:"secretAccessKey"`
Location string `json:"location"`
}
func (m *Config) NewClient() *minio.Client {
minioClient, err := minio.New(m.Endpoint, &minio.Options{
Creds: credentials.NewStaticV4(m.AccessKey, m.SecretAccessKey, ""),
Secure: false,
})
if err != nil {
fmt.Printf("new minio client failed. err %s\n", err.Error())
return minioClient
}
fmt.Println("new minio client success.")
return minioClient
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/cherryred/common.git
git@gitee.com:cherryred/common.git
cherryred
common
common
0e83825f98bb

搜索帮助