traefik/vendor/gopkg.in/ns1/ns1-go.v2/rest/model/data/region.go
2017-03-09 13:13:02 +01:00

10 lines
254 B
Go

package data
// Region is a metadata table with a name/key.
// Can be thought of as metadata groupings.
type Region struct {
Meta Meta `json:"meta,omitempty"`
}
// Regions is simply a mapping of Regions inside a record.
type Regions map[string]Region