peco.peco/debug_off.go
2015-03-17 15:37:52 +09:00

12 lines
165 B
Go

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