forked from TrueCloudLab/frostfs-node
10 lines
123 B
Go
10 lines
123 B
Go
|
package rangehashsvc
|
||
|
|
||
|
type Response struct {
|
||
|
hashes [][]byte
|
||
|
}
|
||
|
|
||
|
func (r *Response) Hashes() [][]byte {
|
||
|
return r.hashes
|
||
|
}
|