mirror of
https://github.com/pen4uin/java-memshell-generator.git
synced 2026-09-22 01:30:43 +08:00
10 lines
198 B
Java
10 lines
198 B
Java
package jmg.cli;
|
|
|
|
public class CLIApp {
|
|
public static void main(String[] args) throws Throwable {
|
|
Console console = new Console();
|
|
console.init();
|
|
console.run();
|
|
}
|
|
}
|