Reduce timing for quicker responces

This commit is contained in:
James
2022-02-06 18:07:20 -08:00
parent 44ec02c0af
commit a24c8c73b2
8 changed files with 12 additions and 13 deletions

View File

@ -0,0 +1,18 @@
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 )
{
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");
}
}