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

18 lines
216 B
Go
Raw Normal View History

2012-08-24 11:56:09 +08:00
package topology
import (
)
2012-08-24 11:56:09 +08:00
type Rack struct {
NodeImpl
2012-08-24 13:33:37 +08:00
ipRange IpRange
2012-08-24 11:56:09 +08:00
}
2012-08-31 16:35:11 +08:00
func NewRack(id string) *Rack {
2012-08-31 16:35:11 +08:00
r := &Rack{}
r.id = NodeId(id)
r.nodeType = "Rack"
r.children = make(map[NodeId]Node)
2012-08-31 16:35:11 +08:00
return r
}