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