Browse Source

Add 'ServiceAddress' field to 'CatalogService's truct

pull/755/head
Chris Grieger 10 years ago
parent
commit
f70ccdb4d2
  1. 13
      api/catalog.go

13
api/catalog.go

@ -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 {

Loading…
Cancel
Save