summaryrefslogtreecommitdiffstats
path: root/cmd
diff options
context:
space:
mode:
authorbndw <ben@bdw.to>2026-02-16 12:04:20 -0800
committerbndw <ben@bdw.to>2026-02-16 12:04:20 -0800
commit02d6819ebfdc5b18d65c83c4077a040466960bac (patch)
tree7a9b0875c7910a93b314d28759da8a171dc1a190 /cmd
parente7c37e80f0ebd0894df45cf2e9f4f29e16a781d7 (diff)
refactor: migrate nostr dependency to code.northwest.io
Updated all import references from northwest.io/nostr to code.northwest.io/nostr and removed the local replace directive from go.mod. The module is now resolved from the published repository.
Diffstat (limited to 'cmd')
-rw-r--r--cmd/testclient/main.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/cmd/testclient/main.go b/cmd/testclient/main.go
index f1151da..3d2ed2d 100644
--- a/cmd/testclient/main.go
+++ b/cmd/testclient/main.go
@@ -15,7 +15,7 @@ import (
15 "google.golang.org/grpc/credentials/insecure" 15 "google.golang.org/grpc/credentials/insecure"
16 16
17 pb "northwest.io/muxstr/api/nostr/v1" 17 pb "northwest.io/muxstr/api/nostr/v1"
18 "northwest.io/nostr" 18 "code.northwest.io/nostr"
19) 19)
20 20
21func main() { 21func main() {