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/handler/grpc/convert.go | 4 ++-- internal/handler/grpc/convert_test.go | 4 ++-- internal/handler/grpc/server.go | 6 +++--- internal/handler/grpc/server_test.go | 6 +++--- 4 files changed, 10 insertions(+), 10 deletions(-) (limited to 'internal/handler/grpc') diff --git a/internal/handler/grpc/convert.go b/internal/handler/grpc/convert.go index 19505cd..db6935e 100644 --- a/internal/handler/grpc/convert.go +++ b/internal/handler/grpc/convert.go @@ -1,8 +1,8 @@ package grpc import ( - pb "northwest.io/nostr-grpc/api/nostr/v1" - "northwest.io/nostr-grpc/internal/nostr" + pb "northwest.io/muxstr/api/nostr/v1" + "northwest.io/muxstr/internal/nostr" ) func NostrToPB(n *nostr.Event) *pb.Event { diff --git a/internal/handler/grpc/convert_test.go b/internal/handler/grpc/convert_test.go index 6da2d89..e9116ef 100644 --- a/internal/handler/grpc/convert_test.go +++ b/internal/handler/grpc/convert_test.go @@ -3,8 +3,8 @@ package grpc import ( "testing" - pb "northwest.io/nostr-grpc/api/nostr/v1" - "northwest.io/nostr-grpc/internal/nostr" + pb "northwest.io/muxstr/api/nostr/v1" + "northwest.io/muxstr/internal/nostr" ) func TestNostrToPB(t *testing.T) { diff --git a/internal/handler/grpc/server.go b/internal/handler/grpc/server.go index 4d6e700..c5eb0d2 100644 --- a/internal/handler/grpc/server.go +++ b/internal/handler/grpc/server.go @@ -5,9 +5,9 @@ import ( "crypto/rand" "fmt" - pb "northwest.io/nostr-grpc/api/nostr/v1" - "northwest.io/nostr-grpc/internal/storage" - "northwest.io/nostr-grpc/internal/subscription" + pb "northwest.io/muxstr/api/nostr/v1" + "northwest.io/muxstr/internal/storage" + "northwest.io/muxstr/internal/subscription" ) type EventStore interface { diff --git a/internal/handler/grpc/server_test.go b/internal/handler/grpc/server_test.go index 12dde92..d589445 100644 --- a/internal/handler/grpc/server_test.go +++ b/internal/handler/grpc/server_test.go @@ -6,9 +6,9 @@ import ( "testing" "time" - pb "northwest.io/nostr-grpc/api/nostr/v1" - "northwest.io/nostr-grpc/internal/nostr" - "northwest.io/nostr-grpc/internal/storage" + pb "northwest.io/muxstr/api/nostr/v1" + "northwest.io/muxstr/internal/nostr" + "northwest.io/muxstr/internal/storage" ) func TestPublishEvent(t *testing.T) { -- cgit v1.2.3