refactor: Decompose index func

This commit is contained in:
Felix Pojtinger
2021-12-06 21:27:59 +01:00
parent 3efa2fe308
commit fdafd1a57a
14 changed files with 579 additions and 479 deletions
+19
View File
@@ -0,0 +1,19 @@
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
}