20 lines
258 B
Go
20 lines
258 B
Go
package recovery
|
|
|
|
import (
|
|
"github.com/pojntfx/stfs/pkg/config"
|
|
)
|
|
|
|
func Fetch(
|
|
state config.StateConfig,
|
|
pipes config.PipeConfig,
|
|
crypto config.CryptoConfig,
|
|
|
|
recordSize int,
|
|
record int,
|
|
block int,
|
|
to string,
|
|
preview string,
|
|
) error {
|
|
return nil
|
|
}
|