Files
htwkalender/backend/service/functions/time/realClock.go
2023-11-21 01:48:09 +01:00

9 lines
215 B
Go

package time
import "time"
type RealClock struct{}
func (RealClock) Now() time.Time { return time.Now() }
func (RealClock) After(d time.Duration) <-chan time.Time { return time.After(d) }