Skip to content

Commit 3103a43

Browse files
authored
Add project status to the README (#22)
1 parent 55f7fd8 commit 3103a43

File tree

1 file changed

+7
-4
lines changed

1 file changed

+7
-4
lines changed

README.md

Lines changed: 7 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,18 @@
11
# go-csv-tag
22

3-
Read csv file from go using tags
3+
Read csv file from Go using tags
44

55
[![godoc for artonge/go-csv-tag](https://godoc.org/github.com/artonge/go-csv-tag?status.svg)](http://godoc.org/github.com/artonge/go-csv-tag)
66

77
![Go](https://github.com/artonge/go-csv-tag/workflows/Go/badge.svg)
88
[![goreportcard for artonge/go-csv-tag](https://goreportcard.com/badge/github.com/artonge/go-csv-tag)](https://goreportcard.com/report/artonge/go-csv-tag)
99

10-
[![Sourcegraph for artonge/go-csv-tag](https://sourcegraph.com/github.com/artonge/go-csv-tag/-/badge.svg)](https://sourcegraph.com/github.com/artonge/go-csv-tag?badge)
1110
[![PRs Welcome](https://img.shields.io/badge/PRs-welcome-brightgreen.svg?style=flat-square)](http://makeapullrequest.com)
1211

12+
**The project is in maintenance mode.**
13+
14+
It is kept compatible with changes in the Go ecosystem but no new features will be developed. PR could be accepted.
15+
1316
# Install
1417

1518
`go get github.com/artonge/go-csv-tag/v2`
@@ -27,7 +30,7 @@ name2, 2, 2.3
2730
name3, 3, 3.4
2831
```
2932

30-
Your go code:
33+
Your Go code:
3134

3235
```go
3336
type Demo struct { // A structure with tags
@@ -60,7 +63,7 @@ csvtag.LoadFromString(yourString, &tab)
6063

6164
## Dump
6265

63-
You go code:
66+
Your Go code:
6467

6568
```go
6669
type Demo struct { // A structure with tags

0 commit comments

Comments
 (0)