Skip to content

Commit

Permalink
Fix incorrect module name
Browse files Browse the repository at this point in the history
  • Loading branch information
root4loot committed Dec 2, 2024
1 parent 04aa74b commit f211a7b
Show file tree
Hide file tree
Showing 16 changed files with 22 additions and 24 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -129,7 +129,7 @@ import (
"fmt"
"log"

"github.com/root4loot/rescope2/pkg/rescope"
"github.com/root4loot/rescope/pkg/rescope"
)

func main() {
Expand Down
6 changes: 3 additions & 3 deletions cmd/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,9 @@ import (
"github.com/root4loot/goutils/log"
"github.com/root4loot/goutils/sliceutil"
"github.com/root4loot/goutils/urlutil"
"github.com/root4loot/rescope2/config"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope2/pkg/rescope"
"github.com/root4loot/rescope/config"
"github.com/root4loot/rescope/pkg/common"
"github.com/root4loot/rescope/pkg/rescope"
"github.com/root4loot/scope"
)

Expand Down
2 changes: 1 addition & 1 deletion example/example.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"fmt"
"log"

"github.com/root4loot/rescope2/pkg/rescope"
"github.com/root4loot/rescope/pkg/rescope"
)

func main() {
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/root4loot/rescope2
module github.com/root4loot/rescope

go 1.23.0

Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -5,8 +5,6 @@ github.com/pkg/errors v0.9.1 h1:FEBLx1zS214owpjy7qsBeixbURkuhQAwrK5UwLGTwt4=
github.com/pkg/errors v0.9.1/go.mod h1:bwawxfHBFNV+L2hUp1rHADufV3IMtnDRdf1r5NINEl0=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
github.com/root4loot/goutils v0.0.0-20241001082813-799fb4f452c1 h1:CZO8axBguxktTElMJwM9rHc7TUg0lh35kdb3hoA1fmE=
github.com/root4loot/goutils v0.0.0-20241001082813-799fb4f452c1/go.mod h1:PDY2j4kbvwpRIO8QqpBRyIEywBc8qhFPXCcyzsK7Y5w=
github.com/root4loot/goutils v0.0.0-20241005165219-eb1bcf33780f h1:sYBJtCZHEviFJHFZpXlXousp1D2eVuKFDuI1WQ2ACGA=
github.com/root4loot/goutils v0.0.0-20241005165219-eb1bcf33780f/go.mod h1:PDY2j4kbvwpRIO8QqpBRyIEywBc8qhFPXCcyzsK7Y5w=
github.com/root4loot/scope v0.0.0-20240904154416-13aa57c33326 h1:GqyC9TdIDXUnG6dgtd1yCw4cUREzutzmS2MeQgRSIUE=
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/bugcrowd/bugcrowd.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
"github.com/root4loot/goutils/domainutil"
"github.com/root4loot/goutils/log"
"github.com/root4loot/goutils/sliceutil"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

type Bugcrowd struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/bugcrowd/bugcrowd_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

var platform = Bugcrowd{}
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/hackenproof/hackenproof.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/root4loot/goutils/log"
"github.com/root4loot/goutils/sliceutil"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

type HackenProof struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/hackenproof/hackenproof_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

var platform = HackenProof{}
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/hackerone/hackerone.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ import (
"strings"

"github.com/root4loot/goutils/log"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

type HackerOne struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/hackerone/hackerone_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

var platform = HackerOne{}
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/intigriti/intigriti.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (

"github.com/root4loot/goutils/log"
"github.com/root4loot/goutils/sliceutil"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

type Intigriti struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/intigriti/intigrity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

// create static intigrity struct
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/yeswehack/yeswehack.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"strings"

"github.com/root4loot/goutils/log"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

type YesWeHack struct {
Expand Down
2 changes: 1 addition & 1 deletion pkg/bugbounty/yeswehack/yeswehack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import (
"net/http"
"testing"

"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/common"
)

var platform = YesWeHack{}
Expand Down
12 changes: 6 additions & 6 deletions pkg/rescope/rescope.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,12 +10,12 @@ import (
"github.com/root4loot/goutils/domainutil"
"github.com/root4loot/goutils/log"

"github.com/root4loot/rescope2/pkg/bugbounty/bugcrowd"
"github.com/root4loot/rescope2/pkg/bugbounty/hackenproof"
"github.com/root4loot/rescope2/pkg/bugbounty/hackerone"
"github.com/root4loot/rescope2/pkg/bugbounty/intigriti"
"github.com/root4loot/rescope2/pkg/bugbounty/yeswehack"
"github.com/root4loot/rescope2/pkg/common"
"github.com/root4loot/rescope/pkg/bugbounty/bugcrowd"
"github.com/root4loot/rescope/pkg/bugbounty/hackenproof"
"github.com/root4loot/rescope/pkg/bugbounty/hackerone"
"github.com/root4loot/rescope/pkg/bugbounty/intigriti"
"github.com/root4loot/rescope/pkg/bugbounty/yeswehack"
"github.com/root4loot/rescope/pkg/common"
)

type Result interface {
Expand Down

0 comments on commit f211a7b

Please sign in to comment.