2022-03-19 00:15:18 -07:00

21 lines
828 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 init
{
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.delegationTimer.trigger();
System.out.println("We've started everything, requests are now being served");
com.jamesquinley.testing.splitFNet.splitNet();
}
}