blob: 5fb694f0039c98c890f222f2a27adfa9411ca541 [file] [log] [blame]
giolekva892a4e22020-04-27 16:46:22 +04001package controller
2
3import (
4 "github.com/giolekva/pcloud/pfs/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}