blob: 00798c91b8e80364143281d15f1235d136f96890 [file] [log] [blame]
package master
import (
"pcloud/api"
)
type chunkServerStatus int
const (
Healthy chunkServerStatus = iota
UNREACHABLE
)
type chunkServer struct {
address string
status chunkServerStatus
chunks map[string]api.ChunkStatus
}