forked from TrueCloudLab/frostfs-node
12 lines
271 B
Go
12 lines
271 B
Go
|
package blobovniczatree
|
||
|
|
||
|
import (
|
||
|
"context"
|
||
|
|
||
|
"git.frostfs.info/TrueCloudLab/frostfs-node/pkg/local_object_storage/blobstor/common"
|
||
|
)
|
||
|
|
||
|
func (b *Blobovniczas) Rebuild(_ context.Context, _ common.RebuildPrm) (common.RebuildRes, error) {
|
||
|
return common.RebuildRes{}, nil
|
||
|
}
|