2023-01-01 15:03:21 +01:00
|
|
|
package com.bib.essensbestellungsverwaltung;
|
|
|
|
|
|
|
|
public class SuperMain {
|
|
|
|
public static void main(String[] args) {
|
2023-01-07 23:14:41 +01:00
|
|
|
if(args.length > 0){
|
|
|
|
ConsoleMain.main(args);
|
|
|
|
}else {
|
|
|
|
HelloApplication.main(args);
|
|
|
|
}
|
2023-01-01 15:03:21 +01:00
|
|
|
}
|
|
|
|
}
|