9a5d4fa719
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
19 lines
291 B
Go
19 lines
291 B
Go
package service
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/photoprism/photoprism/internal/photoprism"
|
|
)
|
|
|
|
var onceMoments sync.Once
|
|
|
|
func initMoments() {
|
|
services.Moments = photoprism.NewMoments(Config())
|
|
}
|
|
|
|
func Moments() *photoprism.Moments {
|
|
onceMoments.Do(initMoments)
|
|
|
|
return services.Moments
|
|
}
|