diff --git a/internal/storage/filesystem.go b/internal/storage/filesystem.go index 4c74cdd..134c2db 100644 --- a/internal/storage/filesystem.go +++ b/internal/storage/filesystem.go @@ -21,12 +21,12 @@ import ( ) const ( - indexFilename = "metadata" - filesDirName = "scratches" - encryptedChunkSize = 64 * 1024 - publicIDLength = 12 - publicIDAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" - publicIDMaxAttempts = 8 + indexFilename = "metadata" + filesDirName = "scratches" + encryptedChunkSize = 64 * 1024 + publicIDLength = 12 + publicIDAlphabet = "0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz" + publicIDMaxAttempts = 8 ) var ErrNotFound = errors.New("scratch not found")