blob: 5fb694f0039c98c890f222f2a27adfa9411ca541 [file] [log] [blame]
giolekva53bcdf42020-03-25 23:30:49 +04001package controller
giolekva1f6577a2020-03-25 12:53:06 +04002
3import (
giolekvab47be772020-04-11 15:23:37 +04004 "github.com/giolekva/pcloud/pfs/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}