diff --git a/go.mod b/go.mod index 8a87e3e..4c3ba8c 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module superdeye +module github.com/almounah/superdeye go 1.23.1 diff --git a/internal/manalocator/locator.go b/internal/manalocator/locator.go index e972ddf..07b499d 100644 --- a/internal/manalocator/locator.go +++ b/internal/manalocator/locator.go @@ -5,8 +5,8 @@ import ( "fmt" "unsafe" - "superdeye/internal/utils/helper" - "superdeye/internal/utils/superdwindows" + "github.com/almounah/superdeye/internal/utils/helper" + "github.com/almounah/superdeye/internal/utils/superdwindows" ) /* diff --git a/internal/utils/helper/misc.go b/internal/utils/helper/misc.go index 6e42bfe..b1245a2 100644 --- a/internal/utils/helper/misc.go +++ b/internal/utils/helper/misc.go @@ -4,7 +4,7 @@ import ( "fmt" "unsafe" - "superdeye/internal/utils/superdwindows" + "github.com/almounah/superdeye/internal/utils/superdwindows" ) func GetPEB() uintptr diff --git a/superdeye.go b/superdeye.go index fb36b7e..df9a7ec 100644 --- a/superdeye.go +++ b/superdeye.go @@ -1,9 +1,9 @@ package superdeye import ( - "superdeye/internal/manalocator" - "superdeye/internal/superdsyscall" - "superdeye/internal/utils/helper" + "github.com/almounah/superdeye/internal/manalocator" + "github.com/almounah/superdeye/internal/superdsyscall" + "github.com/almounah/superdeye/internal/utils/helper" ) func SuperdSyscall(syscallName string, argh ...uintptr) (NTSTATUS uint32, err error) {