This commit is contained in:
Jakob Borg
2013-12-15 11:43:31 +01:00
commit bfe935b5ab
26 changed files with 2866 additions and 0 deletions

7
util.go Normal file
View File

@@ -0,0 +1,7 @@
package main
import "time"
func timing(name string, t0 time.Time) {
debugf("%s: %.02f ms", name, time.Since(t0).Seconds()*1000)
}