source: trunk/EventBenchConsole/src/de/ugoe/cs/eventbench/Runner.java @ 1

Last change on this file since 1 was 1, checked in by sherbold, 13 years ago
File size: 396 bytes
Line 
1package de.ugoe.cs.eventbench;
2
3import de.ugoe.cs.util.console.CommandExecuter;
4import de.ugoe.cs.util.console.TextConsole;
5
6public class Runner {
7
8        /**
9         * @param args
10         */
11        public static void main(String[] args) {
12                CommandExecuter.getInstance().addCommandPackage("de.ugoe.cs.eventbench.commands");
13                TextConsole textConsole = new TextConsole();
14                textConsole.run(true);
15        }
16
17}
Note: See TracBrowser for help on using the repository browser.