Remove common.go

This commit is contained in:
Taylor Gerring 2015-03-22 13:48:07 +01:00
parent 360c66c65d
commit bf73f02fe0
1 changed files with 0 additions and 12 deletions

View File

@ -1,12 +0,0 @@
package common
import (
"fmt"
"time"
)
func Bench(pre string, cb func()) {
start := time.Now()
cb()
fmt.Println(pre, ": took:", time.Since(start))
}