├── .github └── workflows │ └── test.yml ├── LICENSE ├── README.md ├── defaults.go ├── defaults_test.go ├── doc.go ├── factory.go ├── factory_test.go ├── filler.go ├── filler_test.go ├── go.mod └── go.sum /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/README.md -------------------------------------------------------------------------------- /defaults.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/defaults.go -------------------------------------------------------------------------------- /defaults_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/defaults_test.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/doc.go -------------------------------------------------------------------------------- /factory.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/factory.go -------------------------------------------------------------------------------- /factory_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/factory_test.go -------------------------------------------------------------------------------- /filler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/filler.go -------------------------------------------------------------------------------- /filler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/filler_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mcuadros/go-defaults/HEAD/go.sum --------------------------------------------------------------------------------