Skip to content

Commit

Permalink
reset module path to dau71
Browse files Browse the repository at this point in the history
  • Loading branch information
dai.au committed Mar 27, 2024
1 parent 550925e commit 2055a34
Show file tree
Hide file tree
Showing 8 changed files with 11 additions and 10 deletions.
4 changes: 2 additions & 2 deletions example_ssh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,8 @@ import (
"log"
"time"

"github.com/nemith/netconf"
ncssh "github.com/nemith/netconf/transport/ssh"
"github.com/dau71/netconf"
ncssh "github.com/dau71/netconf/transport/ssh"
"golang.org/x/crypto/ssh"
)

Expand Down
4 changes: 2 additions & 2 deletions example_tls_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@ import (
"os"
"time"

"github.com/nemith/netconf"
nctls "github.com/nemith/netconf/transport/tls"
"github.com/dau71/netconf"
nctls "github.com/dau71/netconf/transport/tls"
)

const tlsAddr = "myrouter.example.com:6513"
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/nemith/netconf
module github.com/dau71/netconf

go 1.21

Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ golang.org/x/exp v0.0.0-20230817173708-d852ddb80c63/go.mod h1:0v4NqG35kSWCMzLaMe
golang.org/x/sys v0.18.0 h1:DBdB3niSjOA/O0blCZBqDefyWNYveAYMNF1Wum0DYQ4=
golang.org/x/sys v0.18.0/go.mod h1:/VUhepiaJMQUp4+oa/7Zr1D23ma6VTLIYjOOTFZPUcA=
golang.org/x/term v0.18.0 h1:FcHjZXDMxI8mM3nwhX9HlKop4C0YQvCVCdwYl2wOtE8=
golang.org/x/term v0.18.0/go.mod h1:ILwASektA3OnRv7amZ1xhE/KTR+u50pbXfZ03+6Nx58=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+SDo693bJlVdllGtEeKM=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
Expand Down
4 changes: 2 additions & 2 deletions inttest/ssh_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,8 @@ import (
"strings"
"testing"

"github.com/nemith/netconf"
ncssh "github.com/nemith/netconf/transport/ssh"
"github.com/dau71/netconf"
ncssh "github.com/dau71/netconf/transport/ssh"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"golang.org/x/crypto/ssh"
Expand Down
2 changes: 1 addition & 1 deletion session.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"sync/atomic"
"syscall"

"github.com/nemith/netconf/transport"
"github.com/dau71/netconf/transport"
)

var ErrClosed = errors.New("closed connection")
Expand Down
2 changes: 1 addition & 1 deletion transport/ssh/ssh.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import (
"io"
"net"

"github.com/nemith/netconf/transport"
"github.com/dau71/netconf/transport"
"golang.org/x/crypto/ssh"
)

Expand Down
2 changes: 1 addition & 1 deletion transport/tls/tls.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ import (
"crypto/tls"
"net"

"github.com/nemith/netconf/transport"
"github.com/dau71/netconf/transport"
)

// alias it to a private type so we can make it private when embedding
Expand Down

0 comments on commit 2055a34

Please sign in to comment.