Add stable marshal for container package

Signed-off-by: Alex Vanin <alexey@nspcc.ru>
This commit is contained in:
Alex Vanin 2020-08-18 16:48:58 +03:00 committed by Stanislav Bogatyrev
parent c94cb44b58
commit 82110751e7
3 changed files with 937 additions and 0 deletions

11
v2/netmap/marshal.go Normal file
View file

@ -0,0 +1,11 @@
package netmap
func (p *PlacementPolicy) StableMarshal(buf []byte) ([]byte, error) {
// todo: implement me
return nil, nil
}
func (p *PlacementPolicy) StableSize() (size int) {
// todo: implement me
return 0
}