fix: db non full-text import error (#3055)

pull/3056/head
BoYanZh 2023-01-15 23:49:23 +08:00 committed by GitHub
parent 6b8778a63c
commit 8e2069c554
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 2 deletions

View File

@ -1,4 +1,4 @@
package db
package db_non_full_text
import (
"github.com/alist-org/alist/v3/internal/search/searcher"

View File

@ -1,4 +1,4 @@
package db
package db_non_full_text
import (
"context"

View File

@ -3,4 +3,5 @@ package search
import (
_ "github.com/alist-org/alist/v3/internal/search/bleve"
_ "github.com/alist-org/alist/v3/internal/search/db"
_ "github.com/alist-org/alist/v3/internal/search/db_non_full_text"
)