forked from TrueCloudLab/frostfs-node
15 lines
177 B
Go
15 lines
177 B
Go
package getsvc
|
|
|
|
const (
|
|
statusUndefined int = iota
|
|
statusOK
|
|
statusINHUMED
|
|
statusVIRTUAL
|
|
statusOutOfRange
|
|
statusEC
|
|
)
|
|
|
|
type statusError struct {
|
|
status int
|
|
err error
|
|
}
|