[#1460] blobstor: Do not use pointers as the results
Signed-off-by: Pavel Karpy <carpawell@nspcc.ru>
This commit is contained in:
parent
08bf8a68f1
commit
0e4a1beecf
11 changed files with 64 additions and 63 deletions
|
@ -20,6 +20,6 @@ type GetSmallRes struct {
|
|||
// did not allow to completely read the object.
|
||||
//
|
||||
// Returns an error of type apistatus.ObjectNotFound if the requested object is missing in blobovnicza(s).
|
||||
func (b *BlobStor) GetSmall(prm GetSmallPrm) (*GetSmallRes, error) {
|
||||
func (b *BlobStor) GetSmall(prm GetSmallPrm) (GetSmallRes, error) {
|
||||
return b.blobovniczas.get(prm)
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue