21 lines
665 B
Java
21 lines
665 B
Java
package com.jamesquinley;
|
|
|
|
import static com.jamesquinley.DelegationServices.delegationTimer.DeleteAllRequests;
|
|
|
|
/**
|
|
Hey there! This is the source code for AOTSK-Delegation Server, for login
|
|
*
|
|
*/
|
|
public class init
|
|
{
|
|
public static void main( String[] args )
|
|
{
|
|
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.delegationTimer.trigger();
|
|
DeleteAllRequests();
|
|
System.out.println("We've started everything, requests are now being served");
|
|
|
|
}
|
|
}
|