Files
Velocity/src/main/java/com/velocitypowered/proxy/Velocity.java
2018-07-25 19:47:59 -04:00

16 lines
401 B
Java

package com.velocitypowered.proxy;
import com.velocitypowered.proxy.connection.VelocityServer;
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);
}
}
}