Skip to content

Commit 006e58c

Browse files
committed
Update module path from example to 10d9e in go.mod and related imports
- Changed module path in go.mod to reflect new repository location. - Updated import paths in main.go, fft.go, and planner.go to match the new module path.
1 parent f9a08d8 commit 006e58c

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

cmd/example/main.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import (
66
"math"
77
"math/cmplx"
88

9-
"github.com/example/gofft/pkg/gofft"
9+
"github.com/10d9e/gofft/pkg/gofft"
1010
)
1111

1212
func main() {

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
module github.com/example/gofft
1+
module github.com/10d9e/gofft
22

33
go 1.22.0

pkg/gofft/fft.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
//
66
// Usage:
77
//
8-
// import "github.com/example/gofft/pkg/gofft"
8+
// import "github.com/10d9e/gofft/pkg/gofft"
99
//
1010
// // Create a planner that automatically selects the best implementation
1111
// planner := gofft.NewPlanner()

pkg/gofft/planner.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package gofft
33
import (
44
"sync"
55

6-
"github.com/example/gofft/pkg/gofft/algorithm"
6+
"github.com/10d9e/gofft/pkg/gofft/algorithm"
77
)
88

99
// Planner creates FFT instances for arbitrary sizes

0 commit comments

Comments
 (0)