20 lines
786 B
Java
20 lines
786 B
Java
package com.jamesquinley;
|
|
|
|
import com.jamesquinley.DelegationServices.status;
|
|
|
|
/**
|
|
Hey there! This is the source code for AOTSK-Delegation Server, self explanitory.
|
|
Also this is multi line so I can justify using this type of comment.
|
|
*/
|
|
public class Main
|
|
{
|
|
public static void main( String[] args )
|
|
{
|
|
com.jamesquinley.DelegationServices.delegationServices.connectionInit(status.betaServer);
|
|
com.jamesquinley.DelegationServices.delegationServices.Purge();
|
|
System.out.println( "We're starting the login delegation server, please wait one moment while we check a few things.");
|
|
com.jamesquinley.DelegationServices.delegationServices.userAuthetication();
|
|
System.out.println("We've started everything, requests are now being served");
|
|
}
|
|
}
|