9 lines
112 B
Go
9 lines
112 B
Go
//go:build !notmuch
|
|
// +build !notmuch
|
|
|
|
package lib
|
|
|
|
func NotmuchVersion() (string, bool) {
|
|
return "", false
|
|
}
|