summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/openslx/dnbd3/status/App.java
blob: 9f7ef5f27f7eb764619e3f6c18f7ec03663c7038 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
package org.openslx.dnbd3.status;

import java.io.IOException;

public class App
{

	public static void main( String[] args ) throws IOException
	{
		WebServer ws = new WebServer( 8888 );
		ws.run();
	}

}