1c30414a6c
Core changes: * avoid package-colliding variable naming * avoid using pointers to IDs where unnecessary * avoid using `idSDK` import alias pattern * use `EncodeToString` for protocol string calculation and `String` for printing Signed-off-by: Leonard Lyubich <leonard@nspcc.ru>
13 lines
176 B
Go
13 lines
176 B
Go
package putsvc
|
|
|
|
import (
|
|
oid "github.com/nspcc-dev/neofs-sdk-go/object/id"
|
|
)
|
|
|
|
type PutResponse struct {
|
|
id oid.ID
|
|
}
|
|
|
|
func (r *PutResponse) ObjectID() oid.ID {
|
|
return r.id
|
|
}
|