photoprism/internal/photoprism/index_worker.go
Michael Mayer 8989c987a2 Unstack all types, except primary and sidecar files #394
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
2020-07-14 11:00:49 +02:00

15 lines
248 B
Go

package photoprism
type IndexJob struct {
FileName string
Related RelatedFiles
IndexOpt IndexOptions
Ind *Index
}
func IndexWorker(jobs <-chan IndexJob) {
for job := range jobs {
IndexRelated(job.Related, job.Ind, job.IndexOpt)
}
}