photoprism/pkg/time/tz/time.go
Michael Mayer 149f5e5731 CI: Apply Go linter recommendations to remaining "pkg/..." code #5330
Signed-off-by: Michael Mayer <michael@photoprism.app>
2025-11-22 16:14:43 +01:00

12 lines
191 B
Go

package tz
import (
"time"
)
var (
// TimeUTC provides the UTC location.
TimeUTC = time.UTC
// TimeLocal provides the configured local location.
TimeLocal = time.FixedZone(Local, 0)
)