summaryrefslogtreecommitdiffstats
path: root/internal/handler/grpc/convert.go
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2026-02-14 08:21:01 -0800
committerbndw <ben@bdw.to>2026-02-14 08:21:01 -0800
commit0406e24e1259e1a9adcd739da388dcca9ec8feba (patch)
treea7a0d5b88ddbad604b18fe31a00db37d8ef307ef /internal/handler/grpc/convert.go
parent1527a7313ca46cd646737fb05c33908fba034df9 (diff)
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.
Diffstat (limited to 'internal/handler/grpc/convert.go')
-rw-r--r--internal/handler/grpc/convert.go4
1 files changed, 2 insertions, 2 deletions
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 @@
1package grpc 1package grpc
2 2
3import ( 3import (
4 pb "northwest.io/nostr-grpc/api/nostr/v1" 4 pb "northwest.io/muxstr/api/nostr/v1"
5 "northwest.io/nostr-grpc/internal/nostr" 5 "northwest.io/muxstr/internal/nostr"
6) 6)
7 7
8func NostrToPB(n *nostr.Event) *pb.Event { 8func NostrToPB(n *nostr.Event) *pb.Event {