Merge pull request #755 from fourcube/master

Add 'ServiceAddress' field to 'CatalogService's truct
This commit is contained in:
Armon Dadgar 2015-03-04 10:53:35 -08:00
commit 274860f130
1 changed files with 7 additions and 6 deletions

View File

@ -6,12 +6,13 @@ type Node struct {
}
type CatalogService struct {
Node string
Address string
ServiceID string
ServiceName string
ServiceTags []string
ServicePort int
Node string
Address string
ServiceID string
ServiceName string
ServiceAddress string
ServiceTags []string
ServicePort int
}
type CatalogNode struct {