10 lines
117 B
Go
10 lines
117 B
Go
//go:build !fts5
|
|
|
|
package fts5
|
|
|
|
import "log"
|
|
|
|
func init() {
|
|
log.Fatal("You must provide build tag `-tags fts5`.")
|
|
}
|