Update module name to match new repository URL

Renamed the Go module to align with the updated repository path for better clarity and organization. This ensures consistency across the project and prevents potential import conflicts.
This commit is contained in:
2025-02-21 18:45:27 -05:00
parent 87c68f0129
commit 37c18b3b58
6 changed files with 16 additions and 13 deletions

View File

@@ -1,9 +1,6 @@
package main
import (
"answer/pkg/answer"
"answer/pkg/cache"
"answer/pkg/search"
"context"
"log/slog"
"os"
@@ -13,6 +10,9 @@ import (
"github.com/joho/godotenv"
"github.com/urfave/cli"
"gitea.stevedudenhoeffer.com/steve/answer/pkg/answer"
"gitea.stevedudenhoeffer.com/steve/answer/pkg/cache"
"gitea.stevedudenhoeffer.com/steve/answer/pkg/search"
gollm "gitea.stevedudenhoeffer.com/steve/go-llm"
)