Skip to content

Commit

Permalink
Fix module name
Browse files Browse the repository at this point in the history
  • Loading branch information
rtpt-erikgeiser committed May 9, 2023
1 parent e356fbb commit 00f0649
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module resocks
module github.com/RedTeamPentesting/resocks

go 1.19
go 1.20

require (
github.com/RedTeamPentesting/kbtls v0.1.1
Expand Down
2 changes: 1 addition & 1 deletion listen.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"fmt"
"net"

"resocks/proxyrelay"
"github.com/RedTeamPentesting/resocks/proxyrelay"

"github.com/RedTeamPentesting/kbtls"

Expand Down
2 changes: 1 addition & 1 deletion relay.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"net"
"time"

"resocks/proxyrelay"
"github.com/RedTeamPentesting/resocks/proxyrelay"

"github.com/RedTeamPentesting/kbtls"

Expand Down
2 changes: 1 addition & 1 deletion ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ import (
"sync"
"time"

"resocks/proxyrelay"
"github.com/RedTeamPentesting/resocks/proxyrelay"

"github.com/RedTeamPentesting/kbtls"

Expand Down

0 comments on commit 00f0649

Please sign in to comment.