An open API service indexing awesome lists of open source software.

https://github.com/ipfans/defaults

Fill default values of struct.
https://github.com/ipfans/defaults

Last synced: 12 months ago
JSON representation

Fill default values of struct.

Awesome Lists containing this project

README

          

# defaults

Fill default values of struct.

## How to Use

```go
type V struct {
I int `defaults:"1"`
}

func main() {
var v V
defaults.Default(&v)
}
```