forked from TrueCloudLab/frostfs-node
05f3963975
Implement Head service w/o linking object processing and restoration from split-chain. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
13 lines
187 B
Go
13 lines
187 B
Go
package headsvc
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-node/pkg/core/object"
|
|
)
|
|
|
|
type Response struct {
|
|
hdr *object.Object
|
|
}
|
|
|
|
func (r *Response) Header() *object.Object {
|
|
return r.hdr
|
|
}
|