summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
Diffstat (limited to 'cmd')
-rw-r--r--cmd/relay/main.go14
-rw-r--r--cmd/testclient/main.go4
2 files changed, 9 insertions, 9 deletions
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 (
16 "golang.org/x/net/http2/h2c" 16 "golang.org/x/net/http2/h2c"
17 "google.golang.org/grpc" 17 "google.golang.org/grpc"
18 18
19 pb "northwest.io/nostr-grpc/api/nostr/v1" 19 pb "northwest.io/muxstr/api/nostr/v1"
20 "northwest.io/nostr-grpc/api/nostr/v1/nostrv1connect" 20 "northwest.io/muxstr/api/nostr/v1/nostrv1connect"
21 connecthandler "northwest.io/nostr-grpc/internal/handler/connect" 21 connecthandler "northwest.io/muxstr/internal/handler/connect"
22 grpchandler "northwest.io/nostr-grpc/internal/handler/grpc" 22 grpchandler "northwest.io/muxstr/internal/handler/grpc"
23 wshandler "northwest.io/nostr-grpc/internal/handler/websocket" 23 wshandler "northwest.io/muxstr/internal/handler/websocket"
24 "northwest.io/nostr-grpc/internal/storage" 24 "northwest.io/muxstr/internal/storage"
25 "northwest.io/nostr-grpc/internal/subscription" 25 "northwest.io/muxstr/internal/subscription"
26) 26)
27 27
28func main() { 28func 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 (
14 "google.golang.org/grpc/credentials" 14 "google.golang.org/grpc/credentials"
15 "google.golang.org/grpc/credentials/insecure" 15 "google.golang.org/grpc/credentials/insecure"
16 16
17 pb "northwest.io/nostr-grpc/api/nostr/v1" 17 pb "northwest.io/muxstr/api/nostr/v1"
18 "northwest.io/nostr-grpc/internal/nostr" 18 "northwest.io/muxstr/internal/nostr"
19) 19)
20 20
21func main() { 21func main() {