From 384f7f8b142b5401b2279b9bddd8a13d94656bf0 Mon Sep 17 00:00:00 2001 From: Alex Vanderpot Date: Fri, 29 May 2026 01:19:42 -0400 Subject: [PATCH] ingest: fix go module path to match repo Module is now github.com/ajvpot/meshexplorer/ingest (the code lives under ingest/ in the meshexplorer repo), updated from the old standalone clickhouse-meshingest path. build/vet/test pass. Co-Authored-By: Claude Opus 4.8 --- ingest/cmd/meshcoreingest/main.go | 2 +- ingest/go.mod | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ingest/cmd/meshcoreingest/main.go b/ingest/cmd/meshcoreingest/main.go index e7c747a..3a2109a 100644 --- a/ingest/cmd/meshcoreingest/main.go +++ b/ingest/cmd/meshcoreingest/main.go @@ -11,7 +11,7 @@ import ( "time" "github.com/ClickHouse/ch-go/proto" - "github.com/ajvpot/clickhouse-meshingest/internal/ingestcommon" + "github.com/ajvpot/meshexplorer/ingest/internal/ingestcommon" mqtt "github.com/eclipse/paho.mqtt.golang" "go.uber.org/zap" "go.uber.org/zap/zapcore" diff --git a/ingest/go.mod b/ingest/go.mod index 7f10b0e..502ff92 100644 --- a/ingest/go.mod +++ b/ingest/go.mod @@ -1,4 +1,4 @@ -module github.com/ajvpot/clickhouse-meshingest +module github.com/ajvpot/meshexplorer/ingest go 1.24