7e56427534
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
9 lines
125 B
Go
9 lines
125 B
Go
package getsvc
|
|
|
|
type RangeHashRes struct {
|
|
hashes [][]byte
|
|
}
|
|
|
|
func (r *RangeHashRes) Hashes() [][]byte {
|
|
return r.hashes
|
|
}
|