mirror of
https://github.com/kopia/kopia.git
synced 2026-05-11 08:16:12 -04:00
12 lines
195 B
Go
12 lines
195 B
Go
//go:build !testing
|
|
// +build !testing
|
|
|
|
package clock
|
|
|
|
import "time"
|
|
|
|
// Now returns current wall clock time.
|
|
func Now() time.Time {
|
|
return discardMonotonicTime(time.Now()) //nolint:forbidigo
|
|
}
|