//go:build !xapian package index import "errors" func newXapian(dir string) (Indexer, error) { return nil, errors.New("xapian: not compiled in — rebuild with: go build -tags xapian") }