peco.peco/debug_off.go
Daisuke Maki 97728cbc21 run gofmt
refs #269
2015-09-29 14:21:15 +09:00

14 lines
167 B
Go

// +build !debug
package peco
import "sync"
const debug = true
func newMutex() sync.Locker {
return &sync.Mutex{}
}
func trace(f string, args ...interface{}) {}