2020-11-13 10:38:49 +00:00
|
|
|
package accounting
|
|
|
|
|
|
|
|
import (
|
2023-03-07 10:38:56 +00:00
|
|
|
accounting "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/accounting/grpc"
|
|
|
|
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
|
2020-11-13 10:38:49 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
func (d *Decimal) MarshalJSON() ([]byte, error) {
|
2021-03-12 12:57:23 +00:00
|
|
|
return message.MarshalJSON(d)
|
2020-11-13 10:38:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
func (d *Decimal) UnmarshalJSON(data []byte) error {
|
2021-03-12 12:57:23 +00:00
|
|
|
return message.UnmarshalJSON(d, data, new(accounting.Decimal))
|
2020-11-13 10:38:49 +00:00
|
|
|
}
|