Skip to content
This repository has been archived by the owner on Aug 19, 2022. It is now read-only.

Commit

Permalink
fix module path
Browse files Browse the repository at this point in the history
  • Loading branch information
xiegeo committed Nov 29, 2019
1 parent 295b7e4 commit 671da09
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion cmd/tlsdiag.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"os"

"github.com/libp2p/go-libp2p-tls/cmd/tlsdiag"
"github.com/RTradeLtd/go-libp2p-tls/cmd/tlsdiag"
)

func main() {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tlsdiag/client.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ import (
"net"
"time"

libp2ptls "github.com/RTradeLtd/go-libp2p-tls"
"github.com/libp2p/go-libp2p-core/peer"
libp2ptls "github.com/libp2p/go-libp2p-tls"
)

func StartClient() error {
Expand Down
2 changes: 1 addition & 1 deletion cmd/tlsdiag/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@ import (
"net"
"time"

libp2ptls "github.com/RTradeLtd/go-libp2p-tls"
"github.com/libp2p/go-libp2p-core/peer"
libp2ptls "github.com/libp2p/go-libp2p-tls"
)

func StartServer() error {
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/libp2p/go-libp2p-tls
module github.com/RTradeLtd/go-libp2p-tls

go 1.12

Expand Down

0 comments on commit 671da09

Please sign in to comment.