mirror of
https://gitlab.dit.htwk-leipzig.de/htwk-software/htwkalender.git
synced 2025-07-24 21:39:14 +02:00
9 lines
215 B
Go
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) }
|