You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
aerc/lib/notmuch_version.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
}