Gitiles
Code Review
Sign In
code.v1.dodo.cloud
/
pcloud
/
3ea9049184909283dc10ad436ccbaa5c75b870ba
/
.
/
controller
/
chunk.go
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
}