forked from TrueCloudLab/frostfs-node
[#13] neofs-node: Implement Object.Delete executor
Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
This commit is contained in:
parent
7a6b62c552
commit
7765671502
1 changed files with 2 additions and 2 deletions
|
@ -96,8 +96,8 @@ func (s *objectExecutor) Search(ctx context.Context, body *object.SearchRequestB
|
||||||
return new(simpleSearchBodyStreamer), nil
|
return new(simpleSearchBodyStreamer), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (*objectExecutor) Delete(context.Context, *object.DeleteRequestBody) (*object.DeleteResponseBody, error) {
|
func (*objectExecutor) Delete(_ context.Context, body *object.DeleteRequestBody) (*object.DeleteResponseBody, error) {
|
||||||
panic("implement me")
|
return new(object.DeleteResponseBody), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func (s *simpleRangeBodyStreamer) Recv() (*object.GetRangeResponseBody, error) {
|
func (s *simpleRangeBodyStreamer) Recv() (*object.GetRangeResponseBody, error) {
|
||||||
|
|
Loading…
Reference in a new issue