forked from TrueCloudLab/frostfs-api-go
0ae952fcc6
It uses unstable implementation for now. Signed-off-by: Alex Vanin <alexey@nspcc.ru>
21 lines
463 B
Go
21 lines
463 B
Go
package v2
|
|
|
|
func (m *RequestMetaHeader) StableMarshal(buf []byte) ([]byte, error) {
|
|
// fixme: implement stable
|
|
return m.Marshal()
|
|
}
|
|
|
|
func (m *RequestMetaHeader) StableSize() int {
|
|
// fixme: implement stable
|
|
return m.Size()
|
|
}
|
|
|
|
func (m *RequestVerificationHeader) StableMarshal(buf []byte) ([]byte, error) {
|
|
// fixme: implement stable
|
|
return m.Marshal()
|
|
}
|
|
|
|
func (m *RequestVerificationHeader) StableSize() int {
|
|
// fixme: implement stable
|
|
return m.Size()
|
|
}
|