mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 10:48:51 +00:00
27ed6ec1f9
Reviewed By: dreiss Test Plan: Watch for any weirdness on Thrift code gen, perl specific git-svn-id: https://svn.apache.org/repos/asf/incubator/thrift/trunk@665206 13f79535-47bb-0310-9956-ffa450edef68
20 lines
345 B
Thrift
Executable File
20 lines
345 B
Thrift
Executable File
#!/usr/local/bin/thrift -cpp -java -py -php -xsd -perl
|
|
|
|
/**
|
|
* This Thrift file can be included by other Thrift files that want to share
|
|
* these definitions.
|
|
*/
|
|
|
|
cpp_namespace shared
|
|
java_package shared
|
|
perl_package shared
|
|
|
|
struct SharedStruct {
|
|
1: i32 key
|
|
2: string value
|
|
}
|
|
|
|
service SharedService {
|
|
SharedStruct getStruct(1: i32 key)
|
|
}
|