From dd95b8d8b1f143e0885ef539d1dd2a000b6014d1 Mon Sep 17 00:00:00 2001 From: zhaoxiaorong Date: Wed, 9 Apr 2025 15:24:28 +0800 Subject: [PATCH] fix --- conf/types.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/conf/types.go b/conf/types.go index cf52b79..6b053f3 100644 --- a/conf/types.go +++ b/conf/types.go @@ -49,11 +49,14 @@ type RpcConf struct { } type OssConf struct { + Platform string `yaml:"Platform"` // oss平台:aliyun,tencent,huawei,aws,minio Site string `yaml:"Site"` // oss站点HOST Endpoint string `yaml:"Endpoint"` // oss服务接入地址 Region string `yaml:"Region"` // oss服务区域 AccessKeyID string `yaml:"AccessKeyId"` // oss AccessKeyId AccessKeySecret string `yaml:"AccessKeySecret"` // oss AccessKeySecret + UseSSL bool `yaml:"UseSSL"` // 是否使用SSL + } type MqConf struct {