Refactor constants in filesystem.go for improved readability

- Adjusted formatting of constant declarations in `filesystem.go` to enhance code clarity and maintainability.
This commit is contained in:
2026-06-01 05:58:15 -05:00
parent a3162a3e5f
commit e6801007ee
+6 -6
View File
@@ -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")