/
cloudservices
/
auth-service
Обзор
Документация
Войти
/
cloudservices
/
auth-service
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
CI/CD
Аналитика
master
pkg/platform/foundation/clock/fixed.go
17 строк
196 B
Ivan
platform foundation
01 авг 2026, 13:16
01 авг 2026, 13:16
eeefab5
Код
Авторство
О чём код?
package clock import "time" type Fixed struct { now time.Time } func NewFixed(now time.Time) *Fixed { return &Fixed{ now: now.UTC(), } } func (c *Fixed) Now() time.Time { return c.now }