docs(readme): Badges, Autor und Contributing-Sektion hinzugefügt
- Badges für GitHub-Mirror, Go Reference, Go Report Card und Lizenz ergänzt - Veraltete DueDate-Konstanten (DueNextWeek, DueNextMonth) aus Beispielen entfernt - DueString-Beispiel korrigiert (ohne ^-Präfix) - Contributing-Sektion und Autor-Information am Ende hinzugefügt
This commit is contained in:
parent
f708222eac
commit
4cc9a7bcf4
1 changed files with 14 additions and 3 deletions
17
README.md
17
README.md
|
|
@ -1,5 +1,10 @@
|
||||||
# checkvist-api
|
# checkvist-api
|
||||||
|
|
||||||
|
[](https://github.com/jakoubek/checkvist-api)
|
||||||
|
[](https://pkg.go.dev/code.beautifulmachines.dev/jakoubek/checkvist-api)
|
||||||
|
[](https://goreportcard.com/report/code.beautifulmachines.dev/jakoubek/checkvist-api)
|
||||||
|
[](LICENSE)
|
||||||
|
|
||||||
A type-safe, idiomatic Go client library for the [Checkvist](https://checkvist.com/) API.
|
A type-safe, idiomatic Go client library for the [Checkvist](https://checkvist.com/) API.
|
||||||
|
|
||||||
## Installation
|
## Installation
|
||||||
|
|
@ -133,8 +138,6 @@ The library provides convenient due date helpers:
|
||||||
// Predefined constants
|
// Predefined constants
|
||||||
checkvist.DueToday
|
checkvist.DueToday
|
||||||
checkvist.DueTomorrow
|
checkvist.DueTomorrow
|
||||||
checkvist.DueNextWeek
|
|
||||||
checkvist.DueNextMonth
|
|
||||||
|
|
||||||
// From time.Time
|
// From time.Time
|
||||||
checkvist.DueAt(time.Now().AddDate(0, 0, 7))
|
checkvist.DueAt(time.Now().AddDate(0, 0, 7))
|
||||||
|
|
@ -143,7 +146,7 @@ checkvist.DueAt(time.Now().AddDate(0, 0, 7))
|
||||||
checkvist.DueInDays(5)
|
checkvist.DueInDays(5)
|
||||||
|
|
||||||
// Raw smart syntax
|
// Raw smart syntax
|
||||||
checkvist.DueString("^friday")
|
checkvist.DueString("friday")
|
||||||
```
|
```
|
||||||
|
|
||||||
## Error Handling
|
## Error Handling
|
||||||
|
|
@ -233,3 +236,11 @@ Full API documentation is available on [pkg.go.dev](https://pkg.go.dev/code.beau
|
||||||
## License
|
## License
|
||||||
|
|
||||||
MIT License - see [LICENSE](LICENSE) file for details.
|
MIT License - see [LICENSE](LICENSE) file for details.
|
||||||
|
|
||||||
|
## Contributing
|
||||||
|
|
||||||
|
Contributions are welcome! Please feel free to submit issues or pull requests.
|
||||||
|
|
||||||
|
## Author
|
||||||
|
|
||||||
|
Oliver Jakoubek ([info@jakoubek.net](mailto:info@jakoubek.net))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue