diff --git a/cmd/benchmark/main.go b/cmd/benchmark/main.go index f0d22eb..c4cc65d 100644 --- a/cmd/benchmark/main.go +++ b/cmd/benchmark/main.go @@ -7,7 +7,7 @@ import ( "os" "time" - poltergeist "github.com/ghostsecurity/poltergeist/pkg" + poltergeist "github.com/ghostsecurity/poltergeist/v2/pkg" ) // BenchmarkResult holds the results of a single benchmark run diff --git a/cmd/poltergeist/main.go b/cmd/poltergeist/main.go index 9b73143..dacbd53 100644 --- a/cmd/poltergeist/main.go +++ b/cmd/poltergeist/main.go @@ -10,7 +10,7 @@ import ( "sync/atomic" "time" - poltergeist "github.com/ghostsecurity/poltergeist/pkg" + poltergeist "github.com/ghostsecurity/poltergeist/v2/pkg" ) const ( diff --git a/examples/simple_library_usage.go b/examples/simple_library_usage.go index cb3f497..01d109c 100644 --- a/examples/simple_library_usage.go +++ b/examples/simple_library_usage.go @@ -4,7 +4,7 @@ import ( "fmt" "log" - poltergeist "github.com/ghostsecurity/poltergeist/pkg" + poltergeist "github.com/ghostsecurity/poltergeist/v2/pkg" ) // This example demonstrates how another Go program can easily use the poltergeist diff --git a/go.mod b/go.mod index 0325d0f..4fa28fb 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/ghostsecurity/poltergeist +module github.com/ghostsecurity/poltergeist/v2 go 1.25.6