Moves index fields to the bottom of the structure.

This commit is contained in:
James Phillips 2016-11-17 16:38:30 -08:00 committed by GitHub
parent 8d69db7a89
commit b17907f06a
1 changed files with 2 additions and 2 deletions

View File

@ -7,8 +7,6 @@ type Node struct {
}
type CatalogService struct {
CreateIndex uint64
ModifyIndex uint64
Node string
Address string
TaggedAddresses map[string]string
@ -18,6 +16,8 @@ type CatalogService struct {
ServiceTags []string
ServicePort int
ServiceEnableTagOverride bool
CreateIndex uint64
ModifyIndex uint64
}
type CatalogNode struct {