aboutsummaryrefslogtreecommitdiff
path: root/main.go
diff options
context:
space:
mode:
Diffstat (limited to 'main.go')
-rw-r--r--main.go3
1 files changed, 1 insertions, 2 deletions
diff --git a/main.go b/main.go
index ce1c4b3..fb0478e 100644
--- a/main.go
+++ b/main.go
@@ -25,7 +25,6 @@ import (
"github.com/n-peugnet/dna-backup/dna"
"github.com/n-peugnet/dna-backup/logger"
"github.com/n-peugnet/dna-backup/repo"
- "github.com/n-peugnet/dna-backup/utils"
)
type command struct {
@@ -139,7 +138,7 @@ func exportMain(args []string) error {
r := repo.NewRepo(source, chunkSize)
switch format {
case "dir":
- exporter := dna.New(dest, 96, trackSize, 10000, utils.ZlibWriter, utils.ZlibReader)
+ exporter := dna.New(dest, 96, trackSize, 10000)
r.Export(exporter)
case "csv":
fmt.Println("csv")