e3bb8b19dd
Also improves migrations and updates the db schema docs. Signed-off-by: Michael Mayer <michael@photoprism.app>
19 lines
298 B
Go
19 lines
298 B
Go
package get
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
)
|
|
|
|
var onceImport sync.Once
|
|
|
|
func initImport() {
|
|
services.Import = photoprism.NewImport(Config(), Index(), Convert())
|
|
}
|
|
|
|
func Import() *photoprism.Import {
|
|
onceImport.Do(initImport)
|
|
|
|
return services.Import
|
|
}
|