fix: SpELGzipPacker class not found

This commit is contained in:
ReaJason
2026-05-24 21:28:01 +08:00
parent b6af5992e6
commit eebec85e88
24 changed files with 569 additions and 7 deletions
@@ -0,0 +1,15 @@
import java.io.IOException;
/**
* @author ReaJason
* @since 2025/6/27
*/
public class CommandExec {
static {
try {
java.lang.Runtime.getRuntime().exec("open -a Calculator");
} catch (IOException e) {
}
}
}