frostfs-node/pkg/services/object/get/status.go

15 lines
167 B
Go

package getsvc
const (
statusUndefined int = iota
statusOK
statusINHUMED
statusVIRTUAL
statusOutOfRange
)
type statusError struct {
status int
err error
}