8 lines
103 B
Go
Raw Permalink Normal View History

2025-07-26 23:31:00 +02:00
package common
import "time"
func CompareTime(t1, t2 time.Time) time.Duration {
return t2.Sub(t1)
}