aboutsummaryrefslogtreecommitdiff
path: root/export/exporter.go
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2021-10-18 16:04:31 +0200
committern-peugnet <n.peugnet@free.fr>2021-10-18 16:04:31 +0200
commit56d1f553f32c242f7cc5043b9ce2b719e2285838 (patch)
treef73d85abb69b5b4a9f65aca197fcaf7dda40f99d /export/exporter.go
parent04563efa9c0dc1f6a36094dfd884ae432cf46b29 (diff)
downloaddna-backup-56d1f553f32c242f7cc5043b9ce2b719e2285838.tar.gz
dna-backup-56d1f553f32c242f7cc5043b9ce2b719e2285838.zip
make repo responsible of creating the export end channel
Diffstat (limited to 'export/exporter.go')
-rw-r--r--export/exporter.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/export/exporter.go b/export/exporter.go
index 208fbd7..375ba15 100644
--- a/export/exporter.go
+++ b/export/exporter.go
@@ -20,5 +20,5 @@ type Output struct {
}
type Exporter interface {
- ExportVersion() (input Input, end <-chan bool)
+ ExportVersion(end chan<- bool) Input
}