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. --- cmd/relay/main.go | 14 +++++++------- cmd/testclient/main.go | 4 ++-- 2 files changed, 9 insertions(+), 9 deletions(-) (limited to 'cmd') diff --git a/cmd/relay/main.go b/cmd/relay/main.go index 8f879b2..3a1eeef 100644 --- a/cmd/relay/main.go +++ b/cmd/relay/main.go @@ -16,13 +16,13 @@ import ( "golang.org/x/net/http2/h2c" "google.golang.org/grpc" - pb "northwest.io/nostr-grpc/api/nostr/v1" - "northwest.io/nostr-grpc/api/nostr/v1/nostrv1connect" - connecthandler "northwest.io/nostr-grpc/internal/handler/connect" - grpchandler "northwest.io/nostr-grpc/internal/handler/grpc" - wshandler "northwest.io/nostr-grpc/internal/handler/websocket" - "northwest.io/nostr-grpc/internal/storage" - "northwest.io/nostr-grpc/internal/subscription" + pb "northwest.io/muxstr/api/nostr/v1" + "northwest.io/muxstr/api/nostr/v1/nostrv1connect" + connecthandler "northwest.io/muxstr/internal/handler/connect" + grpchandler "northwest.io/muxstr/internal/handler/grpc" + wshandler "northwest.io/muxstr/internal/handler/websocket" + "northwest.io/muxstr/internal/storage" + "northwest.io/muxstr/internal/subscription" ) func main() { diff --git a/cmd/testclient/main.go b/cmd/testclient/main.go index 85f9917..8a7390a 100644 --- a/cmd/testclient/main.go +++ b/cmd/testclient/main.go @@ -14,8 +14,8 @@ import ( "google.golang.org/grpc/credentials" "google.golang.org/grpc/credentials/insecure" - 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 main() { -- cgit v1.2.3