Omit controls field from json if emtpy.

This commit is contained in:
Tom Wilkie
2015-12-04 10:25:56 +00:00
parent d921b528d8
commit d747eebcb7

View File

@@ -12,8 +12,8 @@ import (
// EdgeMetadatas and Nodes respectively. Edges are directional, and embedded
// in the Node struct.
type Topology struct {
Nodes // TODO(pb): remove Nodes intermediate type
Controls
Nodes `json:"nodes"`
Controls `json:"controls,omitempty"`
}
// MakeTopology gives you a Topology.