forked from TrueCloudLab/frostfs-node
0a51263e72
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
9 lines
123 B
Go
9 lines
123 B
Go
package rangehashsvc
|
|
|
|
type Response struct {
|
|
hashes [][]byte
|
|
}
|
|
|
|
func (r *Response) Hashes() [][]byte {
|
|
return r.hashes
|
|
}
|