Graph database Analysis of the Steam Network
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

18 lines
308 B

package net.jrtechs.www;
import net.jrtechs.www.server.old.Server;
/**
* Launcher for the server
*
* @author Jeffery Russell 6-9-18
*/
@Deprecated
public class App
{
public static void main( String[] args )
{
System.out.println("Starting Server");
new Server().start();
}
}