blob: b3acd618da087908ce3d03ad8718687b7b08e91b [file] [log] [blame]
giolekva1f6577a2020-03-25 12:53:06 +04001package master
2
3import (
giolekvad2a029d2020-03-25 23:06:08 +04004 "github.com/giolekva/pcloud/api"
giolekva1f6577a2020-03-25 12:53:06 +04005)
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}