feat: Added search functionality with TF-IDF scoring and inverted index data structure for efficient document retrieval.
This commit is contained in:
7
main.go
7
main.go
@@ -1,8 +1,13 @@
|
||||
package main
|
||||
|
||||
import "git.dev-null.rocks/alexohneander/gosearch/internal/http"
|
||||
import (
|
||||
"git.dev-null.rocks/alexohneander/gosearch/internal/http"
|
||||
"git.dev-null.rocks/alexohneander/gosearch/pkg/search"
|
||||
)
|
||||
|
||||
func main() {
|
||||
search.TestIndex()
|
||||
|
||||
// Start HTTP Server
|
||||
http.StartService()
|
||||
}
|
||||
|
Reference in New Issue
Block a user