frostfs-api-go/tombstone/json.go

15 lines
378 B
Go

package tombstone
import (
"git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/rpc/message"
tombstone "git.frostfs.info/TrueCloudLab/frostfs-api-go/v2/tombstone/grpc"
)
func (s *Tombstone) MarshalJSON() ([]byte, error) {
return message.MarshalJSON(s)
}
func (s *Tombstone) UnmarshalJSON(data []byte) error {
return message.UnmarshalJSON(s, data, new(tombstone.Tombstone))
}