Files
aerc-fork-mirror/lib/notmuch_version.go
Robin Jarry bf9f3a4eff treewide: run go modernize
This is the result of the following command:

go run golang.org/x/tools/go/analysis/passes/modernize/cmd/modernize@latest -fix ./...

Signed-off-by: Robin Jarry <robin@jarry.cc>
2025-12-20 18:06:30 +01:00

10 lines
151 B
Go

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