feat:合图功能,封装上传base64等等

This commit is contained in:
Hiven
2023-08-09 11:46:24 +08:00
parent 2f1ef81263
commit d810b87c09
13 changed files with 637 additions and 4 deletions

View File

@@ -0,0 +1,28 @@
package config
import (
"fusenapi/server/resource/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
SourceRabbitMq string
AWS struct {
S3 struct {
Credentials struct {
AccessKeyID string
Secret string
Token string
}
}
}
BLMService struct {
LogoCombine struct {
Url string
}
}
}