Skip to content

Commit 6ea8f33

Browse files
committed
rename repo to qiniu/go-cdk-driver
1 parent 434f383 commit 6ea8f33

File tree

4 files changed

+24
-15
lines changed

4 files changed

+24
-15
lines changed

Diff for: .github/workflows/ci-test.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,6 @@ jobs:
2929
staticcheck -go 1.20 ./...
3030
- name: Run Tests
3131
run: |
32-
bash -e
32+
set -e
3333
go test -v ./...
3434
shell: bash

Diff for: README.md

+21-12
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
1-
# Qiniu gocloud.dev blob driver
1+
# Qiniu Go Cloud Development Kit (Go CDK) Driver
22

3-
七牛 kodoblob 为 [gocloud.dev](https://gocloud.dev/) 提供了驱动,可以通过使用 [blob](https://gocloud.dev/blob) 包对七牛 Bucket 中的 Blob 进行读写,列举或删除。
3+
[![LICENSE](https://img.shields.io/github/license/qiniu/go-cdk-driver.svg)](https://github.com/qiniu/go-cdk-driver/blob/main/LICENSE)
4+
[![Build Status](https://github.com/qiniu/go-cdk-driver/workflows/tests/badge.svg)](https://github.com/qiniu/go-cdk-driver/actions)
5+
[![Go Report Card](https://goreportcard.com/badge/github.com/qiniu/go-cdk-driver)](https://goreportcard.com/report/github.com/qiniu/go-cdk-driver)
6+
[![GitHub release](https://img.shields.io/github/v/tag/qiniu/go-cdk-driver.svg?label=release)](https://github.com/qiniu/go-cdk-driver/releases)
7+
[![codecov](https://codecov.io/gh/qiniu/go-cdk-driver/branch/main/graph/badge.svg)](https://codecov.io/gh/qiniu/go-cdk-driver)
8+
[![GoDoc](https://godoc.org/github.com/qiniu/go-cdk-driver/kodoblob?status.svg)](https://godoc.org/github.com/qiniu/go-cdk-driver/kodoblob)
9+
10+
[![Qiniu Logo](http://open.qiniudn.com/logo.png)](http://qiniu.com/)
11+
12+
Qiniu Go CDK Driver 为 [gocloud.dev](https://gocloud.dev/) 提供了 kodoblob 驱动,可以通过使用 [blob](https://gocloud.dev/blob) 包对七牛 Bucket 中的 Blob 进行读写,列举或删除。
413

514
## 代码案例
615

@@ -14,7 +23,7 @@ import (
1423
"fmt"
1524
"os"
1625

17-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
26+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
1827
"gocloud.dev/blob"
1928
)
2029

@@ -60,7 +69,7 @@ import (
6069
"fmt"
6170
"os"
6271

63-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
72+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
6473
"gocloud.dev/blob"
6574
)
6675

@@ -94,7 +103,7 @@ import (
94103
"fmt"
95104
"os"
96105

97-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
106+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
98107
"gocloud.dev/blob"
99108
)
100109

@@ -129,7 +138,7 @@ import (
129138
"fmt"
130139
"os"
131140

132-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
141+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
133142
"gocloud.dev/blob"
134143
)
135144

@@ -162,7 +171,7 @@ import (
162171
"fmt"
163172
"os"
164173

165-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
174+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
166175
"gocloud.dev/blob"
167176
)
168177

@@ -183,18 +192,18 @@ func main() {
183192

184193
## 贡献记录
185194

186-
- [所有贡献者](https://github.com/bachue/go-cloud-dev-qiniu-driver/contributors)
195+
- [所有贡献者](https://github.com/qiniu/go-cdk-driver/contributors)
187196

188197
## 联系我们
189198

190199
- 如果需要帮助,请提交工单(在portal右侧点击咨询和建议提交工单,或者直接向 [email protected] 发送邮件)
191200
- 如果有什么问题,可以到问答社区提问,[问答社区](http://qiniu.segmentfault.com/)
192201
- 更详细的文档,见[官方文档站](http://developer.qiniu.com/)
193-
- 如果发现了bug, 欢迎提交 [issue](https://github.com/bachue/go-cloud-dev-qiniu-driver/issues)
194-
- 如果有功能需求,欢迎提交 [issue](https://github.com/bachue/go-cloud-dev-qiniu-driver/issues)
195-
- 如果要提交代码,欢迎提交 [pull request](https://github.com/bachue/go-cloud-dev-qiniu-driver/pulls)
202+
- 如果发现了bug, 欢迎提交 [issue](https://github.com/qiniu/go-cdk-driver/issues)
203+
- 如果有功能需求,欢迎提交 [issue](https://github.com/qiniu/go-cdk-driver/issues)
204+
- 如果要提交代码,欢迎提交 [pull request](https://github.com/qiniu/go-cdk-driver/pulls)
196205
- 欢迎关注我们的[微信](http://www.qiniu.com/#weixin) [微博](http://weibo.com/qiniutek),及时获取动态信息。
197206

198207
## 代码许可
199208

200-
The Apache License v2.0. 详情见 [License 文件](https://github.com/bachue/go-cloud-dev-qiniu-driver/blob/master/LICENSE).
209+
The Apache License v2.0. 详情见 [License 文件](https://github.com/qiniu/go-cdk-driver/blob/main/LICENSE).

Diff for: go.mod

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
module github.com/bachue/go-cloud-dev-qiniu-driver
1+
module github.com/qiniu/go-cdk-driver
22

33
go 1.21
44

Diff for: kodoblob/kodoblob_test.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ import (
2020
. "github.com/onsi/ginkgo/v2"
2121
. "github.com/onsi/gomega"
2222

23-
_ "github.com/bachue/go-cloud-dev-qiniu-driver/kodoblob"
23+
_ "github.com/qiniu/go-cdk-driver/kodoblob"
2424
"gocloud.dev/blob"
2525
)
2626

0 commit comments

Comments
 (0)