summaryrefslogtreecommitdiffstats
path: root/internal/handler/websocket/handler.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/websocket/handler.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/websocket/handler.go')
-rw-r--r--internal/handler/websocket/handler.go10
1 files changed, 5 insertions, 5 deletions
diff --git a/internal/handler/websocket/handler.go b/internal/handler/websocket/handler.go
index c285df6..f8a7fbd 100644
--- a/internal/handler/websocket/handler.go
+++ b/internal/handler/websocket/handler.go
@@ -7,11 +7,11 @@ import (
7 "log" 7 "log"
8 "net/http" 8 "net/http"
9 9
10 pb "northwest.io/nostr-grpc/api/nostr/v1" 10 pb "northwest.io/muxstr/api/nostr/v1"
11 "northwest.io/nostr-grpc/internal/nostr" 11 "northwest.io/muxstr/internal/nostr"
12 "northwest.io/nostr-grpc/internal/storage" 12 "northwest.io/muxstr/internal/storage"
13 "northwest.io/nostr-grpc/internal/subscription" 13 "northwest.io/muxstr/internal/subscription"
14 "northwest.io/nostr-grpc/internal/websocket" 14 "northwest.io/muxstr/internal/websocket"
15) 15)
16 16
17type EventStore interface { 17type EventStore interface {