blob: 6bcb61a181bd321ce422470b99cb1c6836e50e28 [file] [log] [blame]
package controller
import (
"github.com/giolekva/pcloud/api"
)
type chunkServerStatus int
const (
Healthy chunkServerStatus = iota
UNREACHABLE
)
type chunkServer struct {
address string
status chunkServerStatus
chunks map[string]api.ChunkStatus
}