forked from TrueCloudLab/frostfs-node
Dmitrii Stepanov
45438e7b06
Rename execCtx to request. Move code to appropriate files. Signed-off-by: Dmitrii Stepanov <d.stepanov@yadro.com>
14 lines
167 B
Go
14 lines
167 B
Go
package getsvc
|
|
|
|
const (
|
|
statusUndefined int = iota
|
|
statusOK
|
|
statusINHUMED
|
|
statusVIRTUAL
|
|
statusOutOfRange
|
|
)
|
|
|
|
type statusError struct {
|
|
status int
|
|
err error
|
|
}
|