/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
internal/event/time.go
27 строк
614 B
Michael Mayer
CI: Apply Go linter recommendations to "internal/event" package #5330
22 ноя 2025, 16:10
22 ноя 2025, 16:10
889de68
Код
Авторство
О чём код?
package event import "time" // Day represents a 24-hour duration. const Day = time.Hour * 24 // TimeStamp returns the current timestamp in UTC rounded to seconds. func TimeStamp() time.Time { return time.Now().UTC().Truncate(time.Second) } // TimePointer returns a pointer to the current timestamp. func TimePointer() *time.Time { t := TimeStamp() return &t } // Seconds converts an int to a duration in seconds. func Seconds(s int) time.Duration { return time.Duration(s) * time.Second } // Yesterday returns the time 24 hours ago. func Yesterday() time.Time { return time.Now().Add(-24 * time.Hour) }