This commit is contained in:
jdl
2024-11-19 16:41:41 +01:00
parent 9070d8cfc0
commit 9061198e7f
4 changed files with 255 additions and 0 deletions

9
fts5/requiretag.go Normal file
View File

@@ -0,0 +1,9 @@
//go:build !fts5
package fts5
import "log"
func init() {
log.Fatal("You must provide build tag `-tags fts5`.")
}