260cca91fe
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
19 lines
258 B
Go
19 lines
258 B
Go
package service
|
|
|
|
import (
|
|
"sync"
|
|
|
|
"github.com/photoprism/photoprism/internal/query"
|
|
)
|
|
|
|
var onceQuery sync.Once
|
|
|
|
func initQuery() {
|
|
services.Query = query.New(Config().Db())
|
|
}
|
|
|
|
func Query() *query.Query {
|
|
onceQuery.Do(initQuery)
|
|
|
|
return services.Query
|
|
}
|