modulepackage
1.0.0
Repository: https://github.com/brewerywiwis/decimalcodec.git
Documentation: pkg.go.dev
# README
Shopspring Decimal codec for MongoDB
Usage
Installation (go module)
go get github.com/brewerywiwis/decimalcodec
Example 1
import "github.com/brewerywiwis/decimalcodec"
func NewMongo() {
...
opts := options.Client()
registry := bson.DefaultRegistry // Or another *bsoncodec.Registry
decimalcodec.Register(registry)
opts.SetRegistry(registry)
}
Example 2
import "github.com/brewerywiwis/decimalcodec"
func NewMongo() {
...
opts := options.Client()
registry := decimalcodec.NewDefaultRegistryWithDecimalCodec()
opts.SetRegistry(registry)
}
# Functions
No description provided by the author
No description provided by the author
No description provided by the author
No description provided by the author