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