8 lines
157 B
Go
8 lines
157 B
Go
![]() |
package service
|
||
|
|
||
|
type serviceConfig struct {
|
||
|
Type string `json:"type"`
|
||
|
Name string `json:"name"`
|
||
|
Address string `json:"address"` // 地址:端口
|
||
|
}
|