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