minor style change

pull/2136/head
David Norton 2015-03-31 23:49:54 -04:00
parent 53b6be1547
commit 63346cdcdd
1 changed files with 4 additions and 3 deletions

View File

@ -125,10 +125,11 @@ type dropMeasurementCommand struct {
}
type createMeasurementSubcommand struct {
Name string `json:"name"`
Tags []map[string]string `json:"tags"`
Name string `json:"name"`
Tags []map[string]string `json:"tags"`
Fields []*Field `json:"fields"`
marshaledTags map[string]struct{} // local cache...don't marshal
Fields []*Field `json:"fields"`
}
type createMeasurementsIfNotExistsCommand struct {