[#13] neofs-node: Implement Object.Delete executor

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
Leonard Lyubich 2020-08-25 19:12:54 +03:00 committed by Alex Vanin
parent 7a6b62c552
commit 7765671502

View file

@ -96,8 +96,8 @@ func (s *objectExecutor) Search(ctx context.Context, body *object.SearchRequestB
return new(simpleSearchBodyStreamer), nil
}
func (*objectExecutor) Delete(context.Context, *object.DeleteRequestBody) (*object.DeleteResponseBody, error) {
panic("implement me")
func (*objectExecutor) Delete(_ context.Context, body *object.DeleteRequestBody) (*object.DeleteResponseBody, error) {
return new(object.DeleteResponseBody), nil
}
func (s *simpleRangeBodyStreamer) Recv() (*object.GetRangeResponseBody, error) {