fusenapi/server/upload/internal/config/config.go

29 lines
416 B
Go
Raw Normal View History

package config
import (
"fusenapi/server/upload/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
SourceMysql string
Auth types.Auth
Env string
AWS struct {
S3 struct {
Credentials struct {
AccessKeyID string
Secret string
Token string
}
}
}
2023-08-02 10:14:53 +00:00
BLMService struct {
ImageProcess struct {
Url string
}
}
}