11 lines
169 B
Go
11 lines
169 B
Go
//go:build notmuch
|
|
// +build notmuch
|
|
|
|
package lib
|
|
|
|
import "git.sr.ht/~rjarry/aerc/lib/notmuch"
|
|
|
|
func NotmuchVersion() (string, bool) {
|
|
return notmuch.Version(), true
|
|
}
|