mirror of
https://git.sr.ht/~rjarry/aerc
synced 2026-03-02 18:23:33 +01:00
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>
10 lines
151 B
Go
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
|
|
}
|