12 lines
297 B
Java
12 lines
297 B
Java
|
|
package com.baeldung.thrift;
|
||
|
|
|
||
|
|
import org.apache.thrift.transport.TTransportException;
|
||
|
|
|
||
|
|
public class Application {
|
||
|
|
|
||
|
|
public static void main(String[] args) throws TTransportException {
|
||
|
|
CrossPlatformServiceServer server = new CrossPlatformServiceServer();
|
||
|
|
server.start();
|
||
|
|
}
|
||
|
|
}
|