Init Commit

This commit is contained in:
hstyi
2025-01-02 10:51:54 +08:00
commit 470b95cc42
418 changed files with 29687 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
package zmodem.xfer.io;
import java.io.IOException;
public abstract class ObjectInputStream<T> {
public abstract T read() throws IOException;
}