tested all index codec

This commit is contained in:
2025-06-05 22:35:02 +01:00
parent 08b850e0ea
commit dbfb4b7f8d
17 changed files with 1134 additions and 89 deletions

View File

@@ -5,6 +5,6 @@ import (
)
type I interface {
MarshalBinary(w io.Writer)
UnmarshalBinary(r io.Reader) (err error)
MarshalWrite(w io.Writer)
UnmarshalRead(r io.Reader) (err error)
}