/
githubmirror
/
photoprism
Обзор
Документация
Войти
/
githubmirror
/
photoprism
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
pkg/clean/time.go
10 строк
293 B
Michael Mayer
OIDC: Store email only when the token marks it verified
10 июн 2026, 03:04
10 июн 2026, 03:04
71aeb26
Код
Авторство
О чём код?
package clean import "time" // TimeSet reports whether t points to a meaningful timestamp, i.e. it is non-nil // and not the zero time. Useful for nullable *time.Time values where both nil and // a zero value mean "unset". func TimeSet(t *time.Time) bool { return t != nil && !t.IsZero() }