Skip to content

Commit d6d66b5

Browse files
author
zhangming03
committed
update-module
1 parent c2963b0 commit d6d66b5

File tree

5 files changed

+7
-7
lines changed

5 files changed

+7
-7
lines changed

build.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ fi
4141
cat ../plugin_store_pg.go.temp >plugin_store_pg.go
4242

4343
go clean --modcache
44-
go get -u github.com/polaris-contrib/polaris-store-postgresql@${store_pg_plugin_version}
44+
go get -u github.com/polaris-contrib/store-postgresql@${store_pg_plugin_version}
4545
go mod tidy
4646

4747
make build VERSION=${polaris_server_tag}

go.mod

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
1-
module github.com/polaris-contrib/polaris-store-postgresql
1+
module github.com/polaris-contrib/store-postgresql
22

3-
go 1.19
3+
go 1.18
44

55
require github.com/smartystreets/goconvey v1.8.0
66

@@ -34,5 +34,5 @@ require (
3434
golang.org/x/text v0.9.0 // indirect
3535
google.golang.org/genproto/googleapis/rpc v0.0.0-20230530153820-e85fd2cbaebc // indirect
3636
google.golang.org/grpc v1.55.0 // indirect
37-
google.golang.org/protobuf v1.30.0 // indirect
37+
google.golang.org/protobuf v1.30.0
3838
)

import-format.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,4 +35,4 @@ cd ../
3535
go fmt ./...
3636

3737
find . -name "*.go" -type f | grep -v .pb.go | grep -v test/tools/tools.go | grep -v ./plugin.go |
38-
xargs -I {} ./goimports-reviser -rm-unused -format {} -local github.com/polarismesh/specification -project-name github.com/polaris-contrib/polaris-store-postgresql
38+
xargs -I {} ./goimports-reviser -rm-unused -format {} -local github.com/polarismesh/specification -project-name github.com/polaris-contrib/store-postgresql

pgstore.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import (
2121
"github.com/polarismesh/polaris/common/log"
2222
"github.com/polarismesh/polaris/store"
2323

24-
"github.com/polaris-contrib/polaris-store-postgresql/store/postgresql"
24+
"github.com/polaris-contrib/store-postgresql/store/postgresql"
2525
)
2626

2727
func init() {

plugin_store_pg.go.temp

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,5 @@
1818
package main
1919

2020
import (
21-
_ "github.com/polaris-contrib/polaris-store-postgresql"
21+
_ "github.com/polaris-contrib/store-postgresql"
2222
)

0 commit comments

Comments
 (0)