refactor: Decompose index func

This commit is contained in:
Felicitas Pojtinger
2021-12-06 21:27:59 +01:00
parent 4f5d298c8e
commit 25fe4ddb04
14 changed files with 579 additions and 479 deletions

19
pkg/config/constants.go Normal file
View File

@@ -0,0 +1,19 @@
package config
const (
NoneKey = "none"
CompressionFormatGZipKey = "gzip"
CompressionFormatParallelGZipKey = "parallelgzip"
CompressionFormatLZ4Key = "lz4"
CompressionFormatZStandardKey = "zstandard"
CompressionFormatBrotliKey = "brotli"
CompressionFormatBzip2Key = "bzip2"
CompressionFormatBzip2ParallelKey = "parallelbzip2"
EncryptionFormatAgeKey = "age"
EncryptionFormatPGPKey = "pgp"
SignatureFormatMinisignKey = "minisign"
SignatureFormatPGPKey = "pgp"
)