Files
Velocity/src/main/java/com/velocitypowered/proxy/Velocity.java
2018-07-25 21:18:04 -04:00

14 lines
340 B
Java

package com.velocitypowered.proxy;
public class Velocity {
public static void main(String... args) throws InterruptedException {
VelocityServer server = new VelocityServer();
server.initialize();
while (true) {
// temporary until jline is added.
Thread.sleep(999999);
}
}
}