forked from TrueCloudLab/frostfs-node
16 lines
315 B
Go
16 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
|
||
|
}
|