26 lines
421 B
Go
Raw Normal View History

package config
2023-07-24 10:27:06 +08:00
import (
"fusenapi/server/render/internal/types"
"github.com/zeromicro/go-zero/rest"
)
type Config struct {
rest.RestConf
2023-08-07 11:44:54 +08:00
SourceMysql string
Auth types.Auth
SourceRabbitMq string
2023-08-09 14:49:15 +08:00
AWS struct {
S3 struct {
Credentials struct {
AccessKeyID string
Secret string
Token string
}
}
}
2023-08-10 14:25:14 +08:00
PythonApi struct {
CombineImageUrl string //合图url
}
}