blob: 6bcb61a181bd321ce422470b99cb1c6836e50e28 [file] [log] [blame]
giolekva53bcdf42020-03-25 23:30:49 +04001package controller
giolekva1f6577a2020-03-25 12:53:06 +04002
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}