go-jsonint/README.md

47 lines
1.0 KiB
Markdown
Raw Normal View History

2023-09-24 18:45:19 +00:00
# go-jsonint
Package **jsonint** provides tools for working with integers in JSON.
This helps to work-around that numbers in JSON are effectively "broken".
## Documention
Online documentation, which includes examples, can be found at: http://godoc.org/github.com/reiver/go-jsonint
2023-09-24 18:45:19 +00:00
[![GoDoc](https://godoc.org/github.com/reiver/go-jsonint?status.svg)](https://godoc.org/github.com/reiver/go-jsonint)
## Example
Here is an example:
```go
type Account struct {
FollowersCount jsonint.Int `json:"followers_count"`
FollowingCount jsonint.Int `json:"following_count"`
StatusexCount jsonint.Int `json:"statuses_count"`
}
// ...
var account Account
err := json.Unmarshal(data, &account)
```
2023-09-26 19:59:58 +00:00
## Import
To import package **jsonint** use `import` code like the follownig:
```
import "github.com/reiver/go-jsonint"
2023-09-26 19:59:58 +00:00
```
## Installation
To install package **jsonint** do the following:
```
GOPROXY=direct go get https://github.com/reiver/go-jsonint
2023-09-26 19:59:58 +00:00
```
## Author
2024-08-01 23:36:51 +00:00
Package **jsonint** was written by [Charles Iliya Krempeaux](http://reiver.link)