public class TestServer {
	
	public static void main(String[] args) throws Exception {
		WebServer server = new WebServer(8765);
		server.start();
	}

}
