mirror of
https://github.com/seaweedfs/seaweedfs.git
synced 2026-09-16 19:40:43 +02:00
15 lines
213 B
Go
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
|
|
}
|