20 lines
444 B
Go
20 lines
444 B
Go
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
|
|
return time.Since(startTime) // Calculate the elapsed time
|
|
}
|
|
|
|
func (ls *RepoStatus) SetSpeedActual(s string) {
|
|
if !ls.Ready() {
|
|
return
|
|
}
|
|
ls.speedActual.SetText(s)
|
|
}
|