blob: c2025bdac5befe980560722f9d858a5228fd457b (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
|
//go:build notmuch
// +build notmuch
package lib
import "git.sr.ht/~rjarry/aerc/lib/notmuch"
func NotmuchVersion() (string, bool) {
return notmuch.Version(), true
}
|