fusenapi/server/render/internal/config/config.go
laodaming 870f39ffc5 fix
2023-08-10 14:25:14 +08:00

26 lines
421 B
Go

package config
import (
"fusenapi/server/render/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
}
}
}
PythonApi struct {
CombineImageUrl string //合图url
}
}