aboutsummaryrefslogtreecommitdiff
path: root/const.go
blob: 700d3df7f1e8190d42b44bfae2637d7e7efcfb6e (plain)
1
2
3
4
5
6
7
8
9
10
11
package main

// Defined as var to prevent from using them as const as I want to keep
// beeing able to change tkem at runtime.
var (
	chunkSize  = 8 << 10
	chunksName = "chunks"
	chunkIdFmt = "%015d"
	versionFmt = "%05d"
	filesName  = "files"
)