frostfs-node/pkg/services/object/rangehash/res.go
Leonard Lyubich 0a51263e72 [#53] services/object: Implement GetRangeHash service
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-02 11:25:36 +03:00

9 lines
123 B
Go

package rangehashsvc
type Response struct {
hashes [][]byte
}
func (r *Response) Hashes() [][]byte {
return r.hashes
}