25da5d2e13
Replace all elements from `v2` to root directory. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
14 lines
356 B
Go
14 lines
356 B
Go
package tombstone
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/v2/rpc/message"
|
|
tombstone "github.com/nspcc-dev/neofs-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))
|
|
}
|