feat: Added search functionality with TF-IDF scoring and inverted index data structure for efficient document retrieval.

This commit is contained in:
2025-03-25 17:04:40 +01:00
parent 4c5a57d109
commit 8746f789c4
5 changed files with 198 additions and 3 deletions

View File

@@ -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()
}