2024-06-07 11:11:04 +08:00
|
|
|
package etc
|
|
|
|
|
|
|
|
type ExtraConfig struct {
|
|
|
|
Nacos NacosConf
|
2024-06-12 13:46:14 +08:00
|
|
|
Mq RockerMqConfig
|
2024-06-07 11:11:04 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
type NacosConf struct {
|
|
|
|
Hosts []string
|
|
|
|
NameSpace string
|
|
|
|
TimeOut uint64
|
|
|
|
ServiceName string
|
|
|
|
}
|
2024-06-12 13:46:14 +08:00
|
|
|
|
|
|
|
type RockerMqConfig struct {
|
|
|
|
Host []string
|
|
|
|
GroupName string
|
|
|
|
Topic []string
|
|
|
|
}
|