James Quinley 7bb1643216 Add
-Purge Trigger
Remove
-NA
2022-02-08 17:09:22 -08:00

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");
}
}