mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-12 00:34:13 +01:00
* Backend: improve Yes/No capabilities * Backend: constants package with Yes/No maps and True/False strings * Backend: rename constants to enum * Backend: correct case on russian Yes, more tests * Enum: utilise enum package
8 lines
115 B
Go
8 lines
115 B
Go
package enum
|
|
|
|
// True and False specify boolean string representations.
|
|
const (
|
|
True = "true"
|
|
False = "false"
|
|
)
|