java/sql-dk/src/info/globalcode/sql/dk/CLIStarter.java
author František Kučera <franta-hg@frantovo.cz>
Sun, 15 Dec 2013 23:54:51 +0100
branchv_0
changeset 8 4507cb9a0cf1
parent 5 26223eb63851
child 13 599aad77e986
permissions -rw-r--r--
more exceptions
franta-hg@1
     1
package info.globalcode.sql.dk;
franta-hg@1
     2
franta-hg@1
     3
/**
franta-hg@1
     4
 *
franta-hg@1
     5
 * @author Ing. František Kučera (frantovo.cz)
franta-hg@1
     6
 */
franta-hg@1
     7
public class CLIStarter {
franta-hg@1
     8
franta-hg@1
     9
	public static void main(String[] args) {
franta-hg@5
    10
		CLIParser parser = new CLIParser();
franta-hg@5
    11
		CLIOptions options = parser.parseOptions(args);
franta-hg@4
    12
	}
franta-hg@1
    13
}