├── .github └── workflows │ └── go.yml ├── .gitignore ├── LICENSE ├── Makefile ├── README.md ├── calculator.go ├── constants.go ├── currency.go ├── currency_test.go ├── db.go ├── db_test.go ├── formatter.go ├── formatter_test.go ├── go.mod ├── money.go ├── money_example_test.go ├── money_test.go └── mutator.go /.github/workflows/go.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/.github/workflows/go.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- 1 | test: 2 | go test -v -race ./... -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/README.md -------------------------------------------------------------------------------- /calculator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/calculator.go -------------------------------------------------------------------------------- /constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/constants.go -------------------------------------------------------------------------------- /currency.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/currency.go -------------------------------------------------------------------------------- /currency_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/currency_test.go -------------------------------------------------------------------------------- /db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/db.go -------------------------------------------------------------------------------- /db_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/db_test.go -------------------------------------------------------------------------------- /formatter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/formatter.go -------------------------------------------------------------------------------- /formatter_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/formatter_test.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- 1 | module github.com/Rhymond/go-money 2 | 3 | go 1.13 4 | -------------------------------------------------------------------------------- /money.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/money.go -------------------------------------------------------------------------------- /money_example_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/money_example_test.go -------------------------------------------------------------------------------- /money_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/money_test.go -------------------------------------------------------------------------------- /mutator.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Rhymond/go-money/HEAD/mutator.go --------------------------------------------------------------------------------