12 lines
297 B
Java
Raw Normal View History

2017-02-01 20:45:21 +01:00
package com.baeldung.thrift;
import org.apache.thrift.transport.TTransportException;
2017-02-01 20:45:21 +01:00
public class Application {
public static void main(String[] args) throws TTransportException {
2017-02-01 20:45:21 +01:00
CrossPlatformServiceServer server = new CrossPlatformServiceServer();
server.start();
}
}