Files
seaweedfs/weed-fs/src/pkg/topology/node.go
T
2012-08-23 22:56:14 -07:00

15 lines
213 B
Go

package topology
import (
"pkg/storage"
)
type NodeId uint32
type Node struct {
volumes map[storage.VolumeId]storage.VolumeInfo
volumeLimit int
Ip string
Port int
PublicUrl string
}