Skip to content

Commit 98bc6d4

Browse files
committed
refactor: update module path and clean up dependencies in go.mod and go.sum
1 parent cb1f499 commit 98bc6d4

3 files changed

Lines changed: 5 additions & 12 deletions

File tree

go.mod

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
1-
module fractus
1+
module github.com/rawbytedev/fractus
22

33
go 1.24.3
44

5-
require (
6-
github.com/ethereum/go-ethereum v1.16.3
7-
github.com/stretchr/testify v1.11.1
8-
)
5+
require github.com/stretchr/testify v1.11.1
96

107
require (
118
github.com/davecgh/go-spew v1.1.1 // indirect
12-
github.com/holiman/uint256 v1.3.2 // indirect
139
github.com/pmezard/go-difflib v1.0.0 // indirect
14-
gopkg.in/yaml.v3 v3.0.1
10+
gopkg.in/yaml.v3 v3.0.1 // indirect
1511
)

go.sum

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,3 @@ gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405 h1:yhCVgyC4o1eVCa2tZl7eS0r+
88
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
99
gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
1010
gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
11-
github.com/ethereum/go-ethereum v1.16.3 h1:nDoBSrmsrPbrDIVLTkDQCy1U9KdHN+F2PzvMbDoS42Q=
12-
github.com/ethereum/go-ethereum v1.16.3/go.mod h1:Lrsc6bt9Gm9RyvhfFK53vboCia8kpF9nv+2Ukntnl+8=
13-
github.com/holiman/uint256 v1.3.2 h1:a9EgMPSC1AAaj1SZL5zIQD3WbwTuHrMGOerLjGmM/TA=
14-
github.com/holiman/uint256 v1.3.2/go.mod h1:EOMSn4q6Nyt9P6efbI3bueV4e1b3dGlUCXeiRV4ng7E=

main/main.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,15 @@
11
package main
22

33
import (
4-
"fractus"
54
"log"
65
"net/http"
76
_ "net/http/pprof"
87
"os"
98
"runtime"
109
"runtime/pprof"
1110
"time"
11+
12+
"github.com/rawbytedev/fractus"
1213
)
1314

1415
func main() {

0 commit comments

Comments
 (0)