Moves index fields to the bottom of the structure.
This commit is contained in:
parent
8d69db7a89
commit
b17907f06a
|
@ -7,8 +7,6 @@ type Node struct {
|
||||||
}
|
}
|
||||||
|
|
||||||
type CatalogService struct {
|
type CatalogService struct {
|
||||||
CreateIndex uint64
|
|
||||||
ModifyIndex uint64
|
|
||||||
Node string
|
Node string
|
||||||
Address string
|
Address string
|
||||||
TaggedAddresses map[string]string
|
TaggedAddresses map[string]string
|
||||||
|
@ -18,6 +16,8 @@ type CatalogService struct {
|
||||||
ServiceTags []string
|
ServiceTags []string
|
||||||
ServicePort int
|
ServicePort int
|
||||||
ServiceEnableTagOverride bool
|
ServiceEnableTagOverride bool
|
||||||
|
CreateIndex uint64
|
||||||
|
ModifyIndex uint64
|
||||||
}
|
}
|
||||||
|
|
||||||
type CatalogNode struct {
|
type CatalogNode struct {
|
||||||
|
|
Loading…
Reference in New Issue