Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/benchmark/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion cmd/poltergeist/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"sync/atomic"
"time"

poltergeist "github.com/ghostsecurity/poltergeist/pkg"
poltergeist "github.com/ghostsecurity/poltergeist/v2/pkg"
)

const (
Expand Down
2 changes: 1 addition & 1 deletion examples/simple_library_usage.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/ghostsecurity/poltergeist
module github.com/ghostsecurity/poltergeist/v2

go 1.25.6

Expand Down
Loading