seaweedfs/weed-fs/src/pkg/topology/data_center.go

11 lines
146 B
Go
Raw Normal View History

2012-08-24 03:56:09 +00:00
package topology
2012-08-24 05:33:37 +00:00
import ()
2012-08-24 03:56:09 +00:00
type DataCenterId string
2012-08-24 05:33:37 +00:00
type DataCenter struct {
Id DataCenterId
racks map[RackId]*Rack
ipRange IpRange
}