repostatus/timer.go

20 lines
445 B
Go
Raw Permalink Normal View History

2024-01-09 15:34:53 -06:00
package repostatus
import (
"time"
)
// timeFunction takes a function as an argument and returns the execution time.
func timeFunction(f func()) time.Duration {
startTime := time.Now() // Record the start time
f() // Execute the function
2024-01-09 15:34:53 -06:00
return time.Since(startTime) // Calculate the elapsed time
}
func (ls *RepoStatus) SetSpeedActual(s string) {
if !ls.Ready() {
return
}
ls.speedActual.SetValue(s)
2024-01-09 15:34:53 -06:00
}