convex.main.Main Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of convex-integration Show documentation
Show all versions of convex-integration Show documentation
Module intented primarily to implement integration testing across
different Convex artifacts
The newest version!
package convex.main;
import convex.gui.utils.Terminal;
public class Main {
public static void main(String... args) {
boolean terminal=Terminal.checkIfTerminal();
if (terminal) {
convex.cli.Main.main(args);
} else {
convex.gui.MainGUI.main(args);
}
}
}