Files
photoprism/pkg/unix/time.go
2024-01-29 13:54:50 +01:00

9 lines
154 B
Go

package unix
import "time"
// Time returns the current time in seconds since January 1, 1970 UTC.
func Time() int64 {
return time.Now().UTC().Unix()
}