1031f3122e
Implement `message.Message` interface on all structures and use new methods for conversion instead of functions. make `Unmarshal` and JSON methods to use encoding functions from `message` library. Remove all per-service clients and implement `rpc` library of the functions which execute NeoFS API RPC through new RPC client. Remove no longer used gRPC per-service clients. Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
22 lines
572 B
Go
22 lines
572 B
Go
package container
|
|
|
|
import (
|
|
"github.com/nspcc-dev/neofs-api-go/rpc/message"
|
|
container "github.com/nspcc-dev/neofs-api-go/v2/container/grpc"
|
|
)
|
|
|
|
func (a *Attribute) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(a)
|
|
}
|
|
|
|
func (a *Attribute) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(a, data, new(container.Container_Attribute))
|
|
}
|
|
|
|
func (c *Container) MarshalJSON() ([]byte, error) {
|
|
return message.MarshalJSON(c)
|
|
}
|
|
|
|
func (c *Container) UnmarshalJSON(data []byte) error {
|
|
return message.UnmarshalJSON(c, data, new(container.Container))
|
|
}
|