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

Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
remotes/KirillovDenis/release/v0.21.1
Leonard Lyubich 2020-08-25 19:12:54 +03:00 committed by Alex Vanin
parent 7a6b62c552
commit 7765671502
1 changed files with 2 additions and 2 deletions

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) {