1
0
mirror of https://github.com/rclone/rclone.git synced 2025-12-13 06:43:33 +00:00
Files
rclone/vendor/github.com/spacemonkeygo/monkit/v3/monotime/monotime_fallback.go
2020-05-12 15:56:50 +00:00

8 lines
114 B
Go

// +build !windows
package monotime
import "time"
func elapsed() time.Duration { return time.Since(initTime) }