photoprism/internal/service/session.go
Michael Mayer 6e74f16a77 Auth: Open album share links in the regular user interface #98 #782
Signed-off-by: Michael Mayer <michael@photoprism.app>
2022-10-02 11:38:30 +02:00

20 lines
275 B
Go

package service
import (
"sync"
"github.com/photoprism/photoprism/internal/session"
)
var onceSession sync.Once
func initSession() {
services.Session = session.New(Config())
}
func Session() *session.Session {
onceSession.Do(initSession)
return services.Session
}