summaryrefslogtreecommitdiffstats
path: root/internal/handler/websocket
diff options
context:
space:
mode:
Diffstat (limited to 'internal/handler/websocket')
-rw-r--r--internal/handler/websocket/convert.go2
-rw-r--r--internal/handler/websocket/handler.go2
2 files changed, 2 insertions, 2 deletions
diff --git a/internal/handler/websocket/convert.go b/internal/handler/websocket/convert.go
index 5a5692a..6072a3e 100644
--- a/internal/handler/websocket/convert.go
+++ b/internal/handler/websocket/convert.go
@@ -2,7 +2,7 @@ package websocket
2 2
3import ( 3import (
4 pb "northwest.io/muxstr/api/nostr/v1" 4 pb "northwest.io/muxstr/api/nostr/v1"
5 "northwest.io/nostr" 5 "code.northwest.io/nostr"
6) 6)
7 7
8func NostrToPB(n *nostr.Event) *pb.Event { 8func NostrToPB(n *nostr.Event) *pb.Event {
diff --git a/internal/handler/websocket/handler.go b/internal/handler/websocket/handler.go
index 51288bc..6eb8763 100644
--- a/internal/handler/websocket/handler.go
+++ b/internal/handler/websocket/handler.go
@@ -12,7 +12,7 @@ import (
12 "northwest.io/muxstr/internal/storage" 12 "northwest.io/muxstr/internal/storage"
13 "northwest.io/muxstr/internal/subscription" 13 "northwest.io/muxstr/internal/subscription"
14 "northwest.io/muxstr/internal/websocket" 14 "northwest.io/muxstr/internal/websocket"
15 "northwest.io/nostr" 15 "code.northwest.io/nostr"
16) 16)
17 17
18type EventStore interface { 18type EventStore interface {