From 25751504b92886190ec9fafb51a25a16891a43ec Mon Sep 17 00:00:00 2001 From: eyedeekay Date: Sat, 9 Nov 2024 11:54:54 -0500 Subject: [PATCH] Fix up import paths --- SAMConn.go | 4 ++-- config.go | 2 +- datagram.go | 2 +- helper/helper.go | 6 +++--- primary.go | 2 +- raw.go | 2 +- resolver.go | 2 +- sam3.go | 4 ++-- stream.go | 2 +- streamListener.go | 2 +- stream_test.go | 2 +- 11 files changed, 15 insertions(+), 15 deletions(-) diff --git a/SAMConn.go b/SAMConn.go index 2489326..40ff955 100644 --- a/SAMConn.go +++ b/SAMConn.go @@ -4,12 +4,12 @@ import ( "net" "time" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) /* import ( - . "github.com/eyedeekay/i2pkeys" + . "github.com/go-i2p/i2pkeys" ) */ // Implements net.Conn diff --git a/config.go b/config.go index e5e1903..7d4f8c4 100644 --- a/config.go +++ b/config.go @@ -8,7 +8,7 @@ import ( "strconv" "strings" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) // I2PConfig is a struct which manages I2P configuration options diff --git a/datagram.go b/datagram.go index a3d2683..50cd8fc 100644 --- a/datagram.go +++ b/datagram.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) // The DatagramSession implements net.PacketConn. It works almost like ordinary diff --git a/helper/helper.go b/helper/helper.go index 260b28a..e0730e6 100644 --- a/helper/helper.go +++ b/helper/helper.go @@ -6,11 +6,11 @@ import ( "net" "os" - "github.com/eyedeekay/i2pkeys" - "github.com/eyedeekay/sam3" + "github.com/go-i2p/i2pkeys" + "github.com/go-i2p/sam3" ) -// HEY! If you're looking at this, there's a good chance that `github.com/eyedeekay/onramp` +// HEY! If you're looking at this, there's a good chance that `github.com/go-i2p/onramp` // is a better fit! Check it out. func NetListener(name, samaddr, keyspath string) (net.Listener, error) { diff --git a/primary.go b/primary.go index bd874ce..7a3b98f 100644 --- a/primary.go +++ b/primary.go @@ -10,7 +10,7 @@ import ( "strings" "time" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) const ( diff --git a/raw.go b/raw.go index 556d6ba..f32baed 100644 --- a/raw.go +++ b/raw.go @@ -8,7 +8,7 @@ import ( "strconv" "time" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) // The RawSession provides no authentication of senders, and there is no sender diff --git a/resolver.go b/resolver.go index 55924cb..643c143 100644 --- a/resolver.go +++ b/resolver.go @@ -6,7 +6,7 @@ import ( "errors" "strings" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) type SAMResolver struct { diff --git a/sam3.go b/sam3.go index f10d47c..9d7fdbf 100644 --- a/sam3.go +++ b/sam3.go @@ -13,9 +13,9 @@ import ( "os" "strings" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" - . "github.com/eyedeekay/i2pkeys" + . "github.com/go-i2p/i2pkeys" ) func init() { diff --git a/stream.go b/stream.go index 7ca9003..dbd185b 100644 --- a/stream.go +++ b/stream.go @@ -11,7 +11,7 @@ import ( "strings" "time" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) // Represents a streaming session. diff --git a/streamListener.go b/streamListener.go index d49a00f..19f2ce5 100644 --- a/streamListener.go +++ b/streamListener.go @@ -9,7 +9,7 @@ import ( "strconv" "strings" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) type StreamListener struct { diff --git a/stream_test.go b/stream_test.go index e701973..0566c33 100644 --- a/stream_test.go +++ b/stream_test.go @@ -5,7 +5,7 @@ import ( "strings" "testing" - "github.com/eyedeekay/i2pkeys" + "github.com/go-i2p/i2pkeys" ) func Test_StreamingDial(t *testing.T) {