feat: Update Fiber version to v2 and update internal controller and search logic to use new index module

This commit is contained in:
2025-03-25 21:09:01 +01:00
parent 8746f789c4
commit ed201de318
9 changed files with 85 additions and 62 deletions

View File

@@ -2,11 +2,11 @@ package main
import (
"git.dev-null.rocks/alexohneander/gosearch/internal/http"
"git.dev-null.rocks/alexohneander/gosearch/pkg/search"
"git.dev-null.rocks/alexohneander/gosearch/pkg/index"
)
func main() {
search.TestIndex()
index.TestIndex()
// Start HTTP Server
http.StartService()