aboutsummaryrefslogtreecommitdiff
path: root/const.go
diff options
context:
space:
mode:
authorn-peugnet <n.peugnet@free.fr>2021-09-15 15:06:30 +0200
committern-peugnet <n.peugnet@free.fr>2021-09-15 15:06:30 +0200
commit2f20511f442cecc764c817709c4358a149984766 (patch)
tree332d84e7fd4da60ebc4ab994ccd23650540804d7 /const.go
parent8893edbf525c7daaaeb530e0964c06d5aa080c3d (diff)
downloaddna-backup-2f20511f442cecc764c817709c4358a149984766.tar.gz
dna-backup-2f20511f442cecc764c817709c4358a149984766.zip
add storeWorker and use it to store chunk content and hashes
Diffstat (limited to 'const.go')
-rw-r--r--const.go13
1 files changed, 6 insertions, 7 deletions
diff --git a/const.go b/const.go
index d5ec7f0..c40cb97 100644
--- a/const.go
+++ b/const.go
@@ -1,11 +1,10 @@
package main
const (
- chunksName = "chunks"
- chunkIdFmt = "%015d"
- versionFmt = "%05d"
- filesName = "files"
- fingerprintsName = "fingerprints"
- recipeName = "recipe"
- sketchesName = "sketches"
+ chunksName = "chunks"
+ chunkIdFmt = "%015d"
+ versionFmt = "%05d"
+ filesName = "files"
+ hashesName = "hashes"
+ recipeName = "recipe"
)