gobstore/timer.go
2025-01-12 02:51:51 -07:00

14 lines
205 B
Go

package gobstore
import (
"fmt"
"time"
)
// timer is a helper function
func timer(name string) func() {
start := time.Now()
return func() {
fmt.Printf("%s took %v\n", name, time.Since(start))
}
}