mirror of
https://github.com/peco/peco.git
synced 2026-09-10 07:16:29 -04:00
14 lines
167 B
Go
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{}) {}
|