Main() added

This commit is contained in:
DevSnaith 2023-04-14 05:34:38 +03:00
parent 4d6b56f75d
commit 6ccdcef0d0

View File

@ -85,4 +85,11 @@ public class Lumiere implements ServerEvents{
public int getCurrentPort() {
return server_port;
}
public static void main(String[] args) throws IOException {
StringBuilder sb = new StringBuilder();
sb.append("Lumiere-server version 1.0").append("\n");
sb.append("lumiere-server at github https://github.com/DevSnaith/lumiere-server").append("\n");
System.out.write(sb.toString().getBytes());
}
}