Gitiles
Code Review
Sign In
code.v1.dodo.cloud
/
pcloud
/
2ba11693a014a8d68de2360716619cc78baaa868
/
.
/
pfs
/
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
}