15 lines
315 B
Go
15 lines
315 B
Go
package blobstor
|
|
|
|
import (
|
|
"context"
|
|
|
|
objectSDK "git.frostfs.info/TrueCloudLab/frostfs-sdk-go/object"
|
|
)
|
|
|
|
type StorageIDUpdate interface {
|
|
UpdateStorageID(ctx context.Context, obj *objectSDK.Object, storageID []byte) error
|
|
}
|
|
|
|
func (b *BlobStor) Rebuild(_ context.Context, _ StorageIDUpdate) error {
|
|
return nil
|
|
}
|