From cdc2a77042794d150406d66e8cdd7c8192c73ad3 Mon Sep 17 00:00:00 2001 From: Nex Zhu Date: Wed, 25 Jun 2025 21:02:22 +0800 Subject: [PATCH] refactor: rename module: go.fusiongalaxy.cn -> go.yandata.net --- client/client.go | 2 +- go.mod | 9 +++++---- 2 files changed, 6 insertions(+), 5 deletions(-) diff --git a/client/client.go b/client/client.go index ff2a73b..a06f72c 100644 --- a/client/client.go +++ b/client/client.go @@ -18,7 +18,7 @@ import ( "github.com/tjfoc/gmsm/sm2" "golang.org/x/sync/errgroup" - "go.fusiongalaxy.cn/bdware/bdcontract-client/sm2util" + "go.yandata.net/bdware/bdcontract-client/sm2util" ) type HttpCOptions struct { diff --git a/go.mod b/go.mod index 4c941ab..eaa63eb 100644 --- a/go.mod +++ b/go.mod @@ -1,7 +1,8 @@ -module go.fusiongalaxy.cn/bdware/bdcontract-client +module go.yandata.net/bdware/bdcontract-client go 1.23 -require github.com/tjfoc/gmsm v1.4.1 - -require golang.org/x/sync v0.9.0 +require ( + github.com/tjfoc/gmsm v1.4.1 + golang.org/x/sync v0.9.0 +)