frostfs-node/pkg/services/object/put/res.go
Leonard Lyubich 57f8d3745d [#33] service/object: Implement object Put distributed service
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
2020-10-02 11:25:35 +03:00

13 lines
181 B
Go

package putsvc
import (
"github.com/nspcc-dev/neofs-api-go/pkg/object"
)
type PutResponse struct {
id *object.ID
}
func (r *PutResponse) ObjectID() *object.ID {
return r.id
}