/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/clean/length.go
14 строк
393 B
Michael Mayer
Pkg: Apply "golangci-lint" recommendation to clean package #5330
21 ноя 2025, 17:28
21 ноя 2025, 17:28
23529d0
Код
Авторство
О чём код?
package clean const ( // LengthType is the default max length for numeric types. LengthType = 64 // LengthShortType limits short numeric values. LengthShortType = 8 // LengthIPv6 defines the maximum IPv6 string length. LengthIPv6 = 39 // LengthLog caps log messages to this length. LengthLog = 512 // LengthLimit is the global hard limit for sanitized strings. LengthLimit = 4096 )