diff --git a/examples/C2Framework/C2Framework.go b/examples/C2Framework/C2Framework.go index a9de2f2..167f803 100644 --- a/examples/C2Framework/C2Framework.go +++ b/examples/C2Framework/C2Framework.go @@ -15,7 +15,7 @@ import ( "log" "os" - clr "github.com/Ne0nd0g/go-clr/v1" + clr "github.com/Ne0nd0g/go-clr" ) func main() { diff --git a/examples/CLRWrapper/CLRWrapper.go b/examples/CLRWrapper/CLRWrapper.go index 23f0652..8ef8266 100644 --- a/examples/CLRWrapper/CLRWrapper.go +++ b/examples/CLRWrapper/CLRWrapper.go @@ -8,7 +8,7 @@ import ( "log" "runtime" - clr "github.com/Ne0nd0g/go-clr/v1" + clr "github.com/Ne0nd0g/go-clr" ) func main() { diff --git a/examples/DLLfromDisk/DLLfromDisk.go b/examples/DLLfromDisk/DLLfromDisk.go index 027241a..787d694 100644 --- a/examples/DLLfromDisk/DLLfromDisk.go +++ b/examples/DLLfromDisk/DLLfromDisk.go @@ -8,7 +8,7 @@ import ( "syscall" "unsafe" - clr "github.com/Ne0nd0g/go-clr/v1" + clr "github.com/Ne0nd0g/go-clr" ) func must(err error) { diff --git a/examples/EXEfromMemory/EXEfromMemory.go b/examples/EXEfromMemory/EXEfromMemory.go index 8e50449..602c603 100644 --- a/examples/EXEfromMemory/EXEfromMemory.go +++ b/examples/EXEfromMemory/EXEfromMemory.go @@ -12,7 +12,7 @@ import ( "syscall" "unsafe" - clr "github.com/Ne0nd0g/go-clr/v1" + clr "github.com/Ne0nd0g/go-clr" ) func must(err error) { diff --git a/go.mod b/go.mod index 9053dde..8fe6d68 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/Ne0nd0g/go-clr/v1 +module github.com/Ne0nd0g/go-clr go 1.13