summaryrefslogtreecommitdiffstats
path: root/internal/config/config.go
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 /internal/config/config.go
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 'internal/config/config.go')
-rw-r--r--internal/config/config.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/config/config.go b/internal/config/config.go
index dcceade..7eca750 100644
--- a/internal/config/config.go
+++ b/internal/config/config.go
@@ -10,7 +10,7 @@ import (
10 "northwest.io/muxstr/internal/auth" 10 "northwest.io/muxstr/internal/auth"
11 "northwest.io/muxstr/internal/metrics" 11 "northwest.io/muxstr/internal/metrics"
12 "northwest.io/muxstr/internal/ratelimit" 12 "northwest.io/muxstr/internal/ratelimit"
13 "northwest.io/nostr" 13 "code.northwest.io/nostr"
14) 14)
15 15
16type Config struct { 16type Config struct {