From d012f78829babc018eb128749fe01e15188aada9 Mon Sep 17 00:00:00 2001 From: sw33tLie Date: Mon, 14 Feb 2022 14:40:58 +0100 Subject: [PATCH] Move scope package from internal to pkg --- pkg/bugcrowd/bugcrowd.go | 2 +- pkg/hackerone/hackerone.go | 2 +- pkg/intigriti/intigriti.go | 2 +- {internal => pkg}/scope/scope.go | 0 4 files changed, 3 insertions(+), 3 deletions(-) rename {internal => pkg}/scope/scope.go (100%) diff --git a/pkg/bugcrowd/bugcrowd.go b/pkg/bugcrowd/bugcrowd.go index 9dd72ad..6df48df 100644 --- a/pkg/bugcrowd/bugcrowd.go +++ b/pkg/bugcrowd/bugcrowd.go @@ -11,7 +11,7 @@ import ( "sync" "github.com/PuerkitoBio/goquery" - "github.com/sw33tLie/bbscope/internal/scope" + "github.com/sw33tLie/bbscope/pkg/scope" "github.com/tidwall/gjson" ) diff --git a/pkg/hackerone/hackerone.go b/pkg/hackerone/hackerone.go index 4f86139..fa510c3 100644 --- a/pkg/hackerone/hackerone.go +++ b/pkg/hackerone/hackerone.go @@ -8,7 +8,7 @@ import ( "strings" "sync" - "github.com/sw33tLie/bbscope/internal/scope" + "github.com/sw33tLie/bbscope/pkg/scope" "github.com/tidwall/gjson" ) diff --git a/pkg/intigriti/intigriti.go b/pkg/intigriti/intigriti.go index 701433b..d93f60c 100644 --- a/pkg/intigriti/intigriti.go +++ b/pkg/intigriti/intigriti.go @@ -7,7 +7,7 @@ import ( "strconv" "strings" - "github.com/sw33tLie/bbscope/internal/scope" + "github.com/sw33tLie/bbscope/pkg/scope" "github.com/tidwall/gjson" ) diff --git a/internal/scope/scope.go b/pkg/scope/scope.go similarity index 100% rename from internal/scope/scope.go rename to pkg/scope/scope.go