chore: wrap bleve command since we have a custom analyser, running the `bleve` tool crashes
1 file changed, 15 insertions(+), 0 deletions(-)
changed files
A cmd/bleve/main.go
@@ -0,0 +1,15 @@ +package main + +import ( + "github.com/blevesearch/bleve/v2/cmd/bleve/cmd" + + // to support standard set of build tags + _ "github.com/blevesearch/bleve/v2/config" + + // support nixAttr + _ "alin.ovh/searchix/internal/index/nixattr" +) + +func main() { + cmd.Execute() +}