mirror of
https://github.com/int128/kubelogin.git
synced 2026-05-07 00:16:34 +00:00
10 lines
106 B
Go
10 lines
106 B
Go
package clock
|
|
|
|
import "time"
|
|
|
|
type Fake time.Time
|
|
|
|
func (f Fake) Now() time.Time {
|
|
return time.Time(f)
|
|
}
|