blob: 00798c91b8e80364143281d15f1235d136f96890 [file] [log] [blame]
giolekva1f6577a2020-03-25 12:53:06 +04001package master
2
3import (
4 "pcloud/api"
5)
6
7type chunkServerStatus int
8
9const (
10 Healthy chunkServerStatus = iota
11 UNREACHABLE
12)
13
14type chunkServer struct {
15 address string
16 status chunkServerStatus
17 chunks map[string]api.ChunkStatus
18}