From 0406e24e1259e1a9adcd739da388dcca9ec8feba Mon Sep 17 00:00:00 2001 From: bndw Date: Sat, 14 Feb 2026 08:21:01 -0800 Subject: refactor: rename project from nostr-grpc to muxstr Update module path from northwest.io/nostr-grpc to northwest.io/muxstr. This includes updating all Go imports, protobuf definitions, generated files, and documentation. --- internal/storage/deletions.go | 2 +- internal/storage/deletions_test.go | 2 +- internal/storage/events.go | 2 +- internal/storage/events_test.go | 2 +- internal/storage/query.go | 2 +- internal/storage/query_test.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) (limited to 'internal/storage') diff --git a/internal/storage/deletions.go b/internal/storage/deletions.go index c16b96b..3999d2c 100644 --- a/internal/storage/deletions.go +++ b/internal/storage/deletions.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) const KindDeletion = 5 diff --git a/internal/storage/deletions_test.go b/internal/storage/deletions_test.go index 71fa477..fe82d86 100644 --- a/internal/storage/deletions_test.go +++ b/internal/storage/deletions_test.go @@ -6,7 +6,7 @@ import ( "testing" "time" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) func TestProcessDeletion(t *testing.T) { diff --git a/internal/storage/events.go b/internal/storage/events.go index d74fc7e..836f795 100644 --- a/internal/storage/events.go +++ b/internal/storage/events.go @@ -10,7 +10,7 @@ import ( "github.com/klauspost/compress/zstd" "google.golang.org/protobuf/proto" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) var ( diff --git a/internal/storage/events_test.go b/internal/storage/events_test.go index 4393404..0c30281 100644 --- a/internal/storage/events_test.go +++ b/internal/storage/events_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) func TestStoreEvent(t *testing.T) { diff --git a/internal/storage/query.go b/internal/storage/query.go index 29a2a4c..e756f8f 100644 --- a/internal/storage/query.go +++ b/internal/storage/query.go @@ -7,7 +7,7 @@ import ( "google.golang.org/protobuf/proto" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) type QueryOptions struct { diff --git a/internal/storage/query_test.go b/internal/storage/query_test.go index b1f2fc7..cdff0ec 100644 --- a/internal/storage/query_test.go +++ b/internal/storage/query_test.go @@ -4,7 +4,7 @@ import ( "context" "testing" - pb "northwest.io/nostr-grpc/api/nostr/v1" + pb "northwest.io/muxstr/api/nostr/v1" ) func setupTestEvents(t *testing.T, store *Storage) { -- cgit v1.2.3