31 lines
458 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
2023-07-31 00:41:04 +08:00
ReplicaId uint64
Env string
AWS struct {
S3 struct {
Credentials struct {
AccessKeyID string
Secret string
Token string
}
}
}
2023-08-02 18:14:53 +08:00
BLMService struct {
2023-08-23 11:09:14 +08:00
Url string
2023-08-02 18:14:53 +08:00
ImageProcess struct {
Url string
}
}
}