Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
# Go `netconf` client library

[![Go Reference](https://pkg.go.dev/badge/github.com/nemith/netconf.svg)](https://pkg.go.dev/github.com/nemith/netconf)
[![Report Card](https://goreportcard.com/badge/github.com/nemith/netconf)](https://goreportcard.com/report/github.com/nemith/netconf)
[![Go Reference](https://pkg.go.dev/badge/nemith.io/netconf.svg)](https://pkg.go.dev/nemith.io/netconf)
[![Report Card](https://goreportcard.com/badge/nemith.io/netconf)](https://goreportcard.com/report/nemith.io/netconf)
[![stability-unstable](https://img.shields.io/badge/stability-unstable-yellow.svg)](https://github.com/emersion/stability-badges#unstable)
[![Validate](https://github.com/nemith/netconf/actions/workflows/validate.yaml/badge.svg?branch=main&event=push)](https://github.com/nemith/netconf/actions/workflows/validate.yaml)
[![coverage](https://raw.githubusercontent.com/nemith/netconf/coverage/badge.svg)](http://htmlpreview.github.io/?https://github.com/nemith/netconf/blob/coverage/coverage.html)
[![Validate](https://nemith.io/netconf/actions/workflows/validate.yaml/badge.svg?branch=main&event=push)](https://nemith.io/netconf/actions/workflows/validate.yaml)
[![coverage](https://raw.githubusercontent.com/nemith/netconf/coverage/badge.svg)](http://htmlpreview.github.io/?https://nemith.io/netconf/blob/coverage/coverage.html)

This library is used to create client applications for connecting to network devices via NETCONF.

Expand Down
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"
"nemith.io/netconf"
ncssh "nemith.io/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"
"nemith.io/netconf"
nctls "nemith.io/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 nemith.io/netconf

go 1.23.0

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"
"nemith.io/netconf"
ncssh "nemith.io/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"
"nemith.io/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"
"nemith.io/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"
"nemith.io/netconf/transport"
)

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