/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/list/strings.go
20 строк
462 B
Michael Mayer
Backend: Refactor new enum package and yes/no matching #5191
10 окт 2025, 14:40
10 окт 2025, 14:40
f26f6ec
Код
Авторство
О чём код?
package list import ( "github.com/photoprism/photoprism/pkg/enum" ) // StringLengthLimit specifies the maximum length of string return values. var StringLengthLimit = 767 // Bool specifies boolean string values so they can be normalized. var Bool = map[string]string{ "true": enum.True, "yes": enum.True, "on": enum.True, "enable": enum.True, "false": enum.False, "no": enum.False, "off": enum.False, "disable": enum.False, }