chore: update Go module path to github.com/metamorphosis-dev/kafka

Module path now matches the GitHub mirror location.
All internal imports updated across 35+ files.
This commit is contained in:
Franz Kafka 2026-03-21 19:42:01 +00:00
parent 9a6a40c817
commit 6346fb7155
36 changed files with 70 additions and 47 deletions

View file

@ -10,7 +10,7 @@ import (
"net/url"
"strings"
"github.com/ashie/gosearch/internal/contracts"
"github.com/metamorphosis-dev/kafka/internal/contracts"
)
type WikipediaEngine struct {
@ -49,7 +49,7 @@ func (e *WikipediaEngine) Search(ctx context.Context, req contracts.SearchReques
// Wikimedia APIs require a descriptive User-Agent.
httpReq.Header.Set(
"User-Agent",
"gosearch-go/0.1 (compatible; +https://github.com/ashie/gosearch)",
"gosearch-go/0.1 (compatible; +https://github.com/metamorphosis-dev/kafka)",
)
// Best-effort: hint content language.
if req.Language != "" && req.Language != "auto" {