mirror of
https://github.com/photoprism/photoprism.git
synced 2025-12-11 16:24:11 +01:00
14 lines
234 B
Go
14 lines
234 B
Go
package classify
|
|
|
|
// Data sources.
|
|
const (
|
|
SrcAuto = ""
|
|
SrcManual = "manual"
|
|
SrcLocation = "location"
|
|
SrcImage = "image"
|
|
SrcTitle = "title"
|
|
SrcCaption = "caption"
|
|
SrcSubject = "subject"
|
|
SrcKeyword = "keyword"
|
|
)
|