/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/clean/const.go
26 строк
697 B
Michael Mayer
Pkg: Apply "golangci-lint" recommendation to clean package #5330
21 ноя 2025, 17:28
21 ноя 2025, 17:28
23529d0
Код
Авторство
О чём код?
package clean const ( // EnOr represents the English word "or". EnOr = "or" // EnAnd represents the English word "and". EnAnd = "and" // EnWith represents the English word "with". EnWith = "with" // EnIn represents the English word "in". EnIn = "in" // EnAt represents the English word "at". EnAt = "at" // Empty is a reusable empty string constant. Empty = "" // Space is a reusable single-space constant. Space = " " // Or is the pipe delimiter used in filters. Or = "|" // And is the ampersand delimiter used in filters. And = "&" // Plus is the plus sign used in filters. Plus = "+" // SpacedPlus is a human-readable " + " delimiter. SpacedPlus = Space + Plus + Space )