Skip to content

Commit 245acb5

Browse files
committed
Update module path and import statements to reflect new repository structure
- Changed module name in go.mod from `subenum` to `github.com/TMHSDigital/subenum`. - Updated import paths in main.go to use the new module path for internal packages.
1 parent 807c419 commit 245acb5

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module subenum
1+
module github.com/TMHSDigital/subenum
22

33
go 1.22

main.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ import (
3434
"syscall"
3535
"time"
3636

37-
"subenum/internal/dns"
38-
"subenum/internal/output"
39-
"subenum/internal/wordlist"
37+
"github.com/TMHSDigital/subenum/internal/dns"
38+
"github.com/TMHSDigital/subenum/internal/output"
39+
"github.com/TMHSDigital/subenum/internal/wordlist"
4040
)
4141

4242
const (

0 commit comments

Comments
 (0)