summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile (renamed from spew/Makefile)0
-rw-r--r--bypass.go (renamed from spew/bypass.go)0
-rw-r--r--bypasssafe.go (renamed from spew/bypasssafe.go)0
-rw-r--r--common.go (renamed from spew/common.go)0
-rw-r--r--common_test.go (renamed from spew/common_test.go)2
-rw-r--r--config.go (renamed from spew/config.go)0
-rw-r--r--doc.go (renamed from spew/doc.go)0
-rw-r--r--dump.go (renamed from spew/dump.go)0
-rw-r--r--dump_test.go (renamed from spew/dump_test.go)2
-rw-r--r--dumpcgo_test.go (renamed from spew/dumpcgo_test.go)2
-rw-r--r--dumpnocgo_test.go (renamed from spew/dumpnocgo_test.go)0
-rw-r--r--example_test.go (renamed from spew/example_test.go)2
-rw-r--r--format.go (renamed from spew/format.go)0
-rw-r--r--format_test.go (renamed from spew/format_test.go)2
-rw-r--r--go.mod3
-rw-r--r--internal_test.go (renamed from spew/internal_test.go)0
-rw-r--r--internalunsafe_test.go (renamed from spew/internalunsafe_test.go)0
-rw-r--r--spew.go (renamed from spew/spew.go)0
-rw-r--r--spew/go.mod3
-rw-r--r--spew_test.go (renamed from spew/spew_test.go)2
-rw-r--r--testdata/dumpcgo.go (renamed from spew/testdata/dumpcgo.go)0
21 files changed, 9 insertions, 9 deletions
diff --git a/spew/Makefile b/Makefile
index e20adb9..e20adb9 100644
--- a/spew/Makefile
+++ b/Makefile
diff --git a/spew/bypass.go b/bypass.go
index 7929947..7929947 100644
--- a/spew/bypass.go
+++ b/bypass.go
diff --git a/spew/bypasssafe.go b/bypasssafe.go
index 205c28d..205c28d 100644
--- a/spew/bypasssafe.go
+++ b/bypasssafe.go
diff --git a/spew/common.go b/common.go
index 1be8ce9..1be8ce9 100644
--- a/spew/common.go
+++ b/common.go
diff --git a/spew/common_test.go b/common_test.go
index e551940..459559c 100644
--- a/spew/common_test.go
+++ b/common_test.go
@@ -21,7 +21,7 @@ import (
"reflect"
"testing"
- "go.wit.com/dev/davecgh/go-spew/spew"
+ "go.wit.com/dev/davecgh/spew"
)
// custom type to test Stinger interface on non-pointer receiver.
diff --git a/spew/config.go b/config.go
index 2e3d22f..2e3d22f 100644
--- a/spew/config.go
+++ b/config.go
diff --git a/spew/doc.go b/doc.go
index aacaac6..aacaac6 100644
--- a/spew/doc.go
+++ b/doc.go
diff --git a/spew/dump.go b/dump.go
index f78d89f..f78d89f 100644
--- a/spew/dump.go
+++ b/dump.go
diff --git a/spew/dump_test.go b/dump_test.go
index bac069c..7606ecc 100644
--- a/spew/dump_test.go
+++ b/dump_test.go
@@ -67,7 +67,7 @@ import (
"testing"
"unsafe"
- "go.wit.com/dev/davecgh/go-spew/spew"
+ "go.wit.com/dev/davecgh/spew"
)
// dumpTest is used to describe a test to be performed against the Dump method.
diff --git a/spew/dumpcgo_test.go b/dumpcgo_test.go
index 94b0a5e..9292e7a 100644
--- a/spew/dumpcgo_test.go
+++ b/dumpcgo_test.go
@@ -26,7 +26,7 @@ package spew_test
import (
"fmt"
- "go.wit.com/dev/davecgh/go-spew/spew/testdata"
+ "go.wit.com/dev/davecgh/spew/testdata"
)
func addCgoDumpTests() {
diff --git a/spew/dumpnocgo_test.go b/dumpnocgo_test.go
index 52a0971..52a0971 100644
--- a/spew/dumpnocgo_test.go
+++ b/dumpnocgo_test.go
diff --git a/spew/example_test.go b/example_test.go
index 5237684..c1aa4a7 100644
--- a/spew/example_test.go
+++ b/example_test.go
@@ -19,7 +19,7 @@ package spew_test
import (
"fmt"
- "go.wit.com/dev/davecgh/go-spew/spew"
+ "go.wit.com/dev/davecgh/spew"
)
type Flag int
diff --git a/spew/format.go b/format.go
index b04edb7..b04edb7 100644
--- a/spew/format.go
+++ b/format.go
diff --git a/spew/format_test.go b/format_test.go
index eeb3bc5..d4f44a8 100644
--- a/spew/format_test.go
+++ b/format_test.go
@@ -72,7 +72,7 @@ import (
"testing"
"unsafe"
- "go.wit.com/dev/davecgh/go-spew/spew"
+ "go.wit.com/dev/davecgh/spew"
)
// formatterTest is used to describe a test to be performed against NewFormatter.
diff --git a/go.mod b/go.mod
new file mode 100644
index 0000000..9a692be
--- /dev/null
+++ b/go.mod
@@ -0,0 +1,3 @@
+module go.wit.com/dev/davecgh/spew
+
+go 1.21.4
diff --git a/spew/internal_test.go b/internal_test.go
index e312b4f..e312b4f 100644
--- a/spew/internal_test.go
+++ b/internal_test.go
diff --git a/spew/internalunsafe_test.go b/internalunsafe_test.go
index 80dc221..80dc221 100644
--- a/spew/internalunsafe_test.go
+++ b/internalunsafe_test.go
diff --git a/spew/spew.go b/spew.go
index 32c0e33..32c0e33 100644
--- a/spew/spew.go
+++ b/spew.go
diff --git a/spew/go.mod b/spew/go.mod
deleted file mode 100644
index a2912f3..0000000
--- a/spew/go.mod
+++ /dev/null
@@ -1,3 +0,0 @@
-module go.wit.com/dev/davecgh/go-spew/spew
-
-go 1.21.4
diff --git a/spew/spew_test.go b/spew_test.go
index 522d320..e092e89 100644
--- a/spew/spew_test.go
+++ b/spew_test.go
@@ -23,7 +23,7 @@ import (
"os"
"testing"
- "go.wit.com/dev/davecgh/go-spew/spew"
+ "go.wit.com/dev/davecgh/spew"
)
// spewFunc is used to identify which public function of the spew package or
diff --git a/spew/testdata/dumpcgo.go b/testdata/dumpcgo.go
index 5c87dd4..5c87dd4 100644
--- a/spew/testdata/dumpcgo.go
+++ b/testdata/dumpcgo.go