transfer_middleware/cmd/rpc/etc/config.go

20 lines
279 B
Go
Executable File

package etc
type ExtraConfig struct {
Nacos NacosConf
Mq RockerMqConfig
}
type NacosConf struct {
Hosts []string
NameSpace string
TimeOut uint64
ServiceName string
}
type RockerMqConfig struct {
Host []string
GroupName string
Topic []string
}