Skip to content

Commit 63eab82

Browse files
Merge pull request #3 from goark/migrated-repository
Migrated repository to github.com/goark/csvdata
2 parents 88981a9 + 2505033 commit 63eab82

File tree

14 files changed

+35
-33
lines changed

14 files changed

+35
-33
lines changed

README.md

Lines changed: 13 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,18 @@
11
# [csvdata] -- Reading CSV Data
22

3-
[![check vulns](https://github.com/spiegel-im-spiegel/csvdata/workflows/vulns/badge.svg)](https://github.com/spiegel-im-spiegel/csvdata/actions)
4-
[![lint status](https://github.com/spiegel-im-spiegel/csvdata/workflows/lint/badge.svg)](https://github.com/spiegel-im-spiegel/csvdata/actions)
5-
[![GitHub license](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/spiegel-im-spiegel/csvdata/master/LICENSE)
6-
[![GitHub release](https://img.shields.io/github/release/spiegel-im-spiegel/csvdata.svg)](https://github.com/spiegel-im-spiegel/csvdata/releases/latest)
3+
[![check vulns](https://github.com/goark/csvdata/workflows/vulns/badge.svg)](https://github.com/goark/csvdata/actions)
4+
[![lint status](https://github.com/goark/csvdata/workflows/lint/badge.svg)](https://github.com/goark/csvdata/actions)
5+
[![GitHub license](https://img.shields.io/badge/license-Apache%202-blue.svg)](https://raw.githubusercontent.com/goark/csvdata/master/LICENSE)
6+
[![GitHub release](https://img.shields.io/github/release/goark/csvdata.svg)](https://github.com/goark/csvdata/releases/latest)
77

88
This package is required Go 1.16 or later.
99

10+
**Migrated repository to [github.com/goark/csvdata][csvdata]**
11+
1012
## Import
1113

1214
```go
13-
import "github.com/spiegel-im-spiegel/csvdata"
15+
import "github.com/goark/csvdata"
1416
```
1517

1618
## Usage
@@ -21,7 +23,7 @@ package csvdata_test
2123
import (
2224
"fmt"
2325

24-
"github.com/spiegel-im-spiegel/csvdata"
26+
"github.com/goark/csvdata"
2527
)
2628

2729
func ExampleNew() {
@@ -51,8 +53,8 @@ package exceldata_test
5153
import (
5254
"fmt"
5355

54-
"github.com/spiegel-im-spiegel/csvdata"
55-
"github.com/spiegel-im-spiegel/csvdata/exceldata"
56+
"github.com/goark/csvdata"
57+
"github.com/goark/csvdata/exceldata"
5658
)
5759

5860
func ExampleNew() {
@@ -87,8 +89,8 @@ package calcdata_test
8789
import (
8890
"fmt"
8991

90-
"github.com/spiegel-im-spiegel/csvdata"
91-
"github.com/spiegel-im-spiegel/csvdata/calcdata"
92+
"github.com/goark/csvdata"
93+
"github.com/goark/csvdata/calcdata"
9294
)
9395

9496
func ExampleNew() {
@@ -119,4 +121,4 @@ func ExampleNew() {
119121

120122
[![dependency.png](./dependency.png)](./dependency.png)
121123

122-
[csvdata]: https://github.com/spiegel-im-spiegel/csvdata "spiegel-im-spiegel/csvdata: Reading CSV Data"
124+
[csvdata]: https://github.com/goark/csvdata "goark/csvdata: Reading CSV Data"

Taskfile.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,15 +13,15 @@ tasks:
1313
cmds:
1414
- go mod verify
1515
- go test -shuffle on ./...
16-
- docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.42.1 golangci-lint run --enable gosec --timeout 3m0s ./...
16+
- docker run --rm -v $(pwd):/app -w /app golangci/golangci-lint:v1.44.2 golangci-lint run --enable gosec --timeout 3m0s ./...
1717
sources:
1818
- ./go.mod
1919
- '**/*.go'
2020

2121
nancy:
2222
desc: Check vulnerability of external packages with Nancy.
2323
cmds:
24-
- depm list -j | docker run --rm -i sonatypecommunity/nancy:latest sleuth -n
24+
- depm list -j | nancy sleuth -n
2525
sources:
2626
- ./go.mod
2727
- '**/*.go'

calcdata/calcdata.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@ import (
44
"bytes"
55
"io"
66

7+
"github.com/goark/csvdata"
8+
"github.com/goark/errs"
79
"github.com/knieriem/odf/ods"
8-
"github.com/spiegel-im-spiegel/csvdata"
9-
"github.com/spiegel-im-spiegel/errs"
1010
)
1111

1212
//Reader is class of LibreOffice Calc data

calcdata/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package calcdata_test
33
import (
44
"fmt"
55

6-
"github.com/spiegel-im-spiegel/csvdata"
7-
"github.com/spiegel-im-spiegel/csvdata/calcdata"
6+
"github.com/goark/csvdata"
7+
"github.com/goark/csvdata/calcdata"
88
)
99

1010
func ExampleNew() {

csvdata.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"io"
66
"os"
77

8-
"github.com/spiegel-im-spiegel/errs"
8+
"github.com/goark/errs"
99
)
1010

1111
//Reader is class of CSV reader

csvdata_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ import (
88
"testing"
99
"testing/iotest"
1010

11-
"github.com/spiegel-im-spiegel/csvdata"
11+
"github.com/goark/csvdata"
1212
)
1313

1414
const (

dependency.png

-4.68 KB
Loading

example_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ package csvdata_test
33
import (
44
"fmt"
55

6-
"github.com/spiegel-im-spiegel/csvdata"
6+
"github.com/goark/csvdata"
77
)
88

99
func ExampleNew() {

exceldata/example_test.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package exceldata_test
33
import (
44
"fmt"
55

6-
"github.com/spiegel-im-spiegel/csvdata"
7-
"github.com/spiegel-im-spiegel/csvdata/exceldata"
6+
"github.com/goark/csvdata"
7+
"github.com/goark/csvdata/exceldata"
88
)
99

1010
func ExampleNew() {

exceldata/exceldata.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@ package exceldata
33
import (
44
"io"
55

6-
"github.com/spiegel-im-spiegel/csvdata"
7-
"github.com/spiegel-im-spiegel/errs"
6+
"github.com/goark/csvdata"
7+
"github.com/goark/errs"
88
"github.com/xuri/excelize/v2"
99
)
1010

0 commit comments

Comments
 (0)