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