Skip to content

Commit

Permalink
Fix up import paths
Browse files Browse the repository at this point in the history
  • Loading branch information
eyedeekay committed Nov 9, 2024
1 parent a745742 commit 2575150
Show file tree
Hide file tree
Showing 11 changed files with 15 additions and 15 deletions.
4 changes: 2 additions & 2 deletions SAMConn.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion config.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion datagram.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
6 changes: 3 additions & 3 deletions helper/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down
2 changes: 1 addition & 1 deletion primary.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"
"time"

"github.com/eyedeekay/i2pkeys"
"github.com/go-i2p/i2pkeys"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion raw.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion resolver.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"errors"
"strings"

"github.com/eyedeekay/i2pkeys"
"github.com/go-i2p/i2pkeys"
)

type SAMResolver struct {
Expand Down
4 changes: 2 additions & 2 deletions sam3.go
Original file line number Diff line number Diff line change
Expand Up @@ -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() {
Expand Down
2 changes: 1 addition & 1 deletion stream.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"
"time"

"github.com/eyedeekay/i2pkeys"
"github.com/go-i2p/i2pkeys"
)

// Represents a streaming session.
Expand Down
2 changes: 1 addition & 1 deletion streamListener.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"strconv"
"strings"

"github.com/eyedeekay/i2pkeys"
"github.com/go-i2p/i2pkeys"
)

type StreamListener struct {
Expand Down
2 changes: 1 addition & 1 deletion stream_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"strings"
"testing"

"github.com/eyedeekay/i2pkeys"
"github.com/go-i2p/i2pkeys"
)

func Test_StreamingDial(t *testing.T) {
Expand Down

0 comments on commit 2575150

Please sign in to comment.