[#41] Add APE rule serializer

Signed-off-by: Ori Bruk <o.bruk@yadro.com>
This commit is contained in:
Ori Bruk 2025-02-13 20:25:29 +03:00
parent 532db56f1b
commit 3861eb0dc2
28 changed files with 542 additions and 143 deletions

View file

@ -0,0 +1,5 @@
package info.frostfs.sdk.tools;
public interface MarshalFunction<T> {
int marshal(byte[] buf, int offset, T t);
}