2023-07-21 07:20:18 +00:00
|
|
|
package config
|
|
|
|
|
2023-07-24 02:27:06 +00:00
|
|
|
import (
|
|
|
|
"fusenapi/server/render/internal/types"
|
|
|
|
|
|
|
|
"github.com/zeromicro/go-zero/rest"
|
|
|
|
)
|
2023-07-21 07:20:18 +00:00
|
|
|
|
|
|
|
type Config struct {
|
|
|
|
rest.RestConf
|
2023-08-07 03:44:54 +00:00
|
|
|
SourceMysql string
|
|
|
|
Auth types.Auth
|
2023-08-08 06:18:45 +00:00
|
|
|
ReplicaId uint64
|
2023-08-07 03:44:54 +00:00
|
|
|
SourceRabbitMq string
|
2023-08-09 06:49:15 +00:00
|
|
|
AWS struct {
|
|
|
|
S3 struct {
|
|
|
|
Credentials struct {
|
|
|
|
AccessKeyID string
|
|
|
|
Secret string
|
|
|
|
Token string
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2023-08-14 10:40:34 +00:00
|
|
|
BLMService struct {
|
|
|
|
Url string
|
|
|
|
LogoCombine struct {
|
|
|
|
Url string
|
|
|
|
}
|
2023-08-10 06:25:14 +00:00
|
|
|
}
|
2023-07-21 07:20:18 +00:00
|
|
|
}
|