mirror of
https://github.com/valitydev/thrift.git
synced 2024-11-07 18:58:51 +00:00
9 lines
134 B
Thrift
9 lines
134 B
Thrift
|
exception Error {
|
||
|
1: string desc;
|
||
|
}
|
||
|
|
||
|
service Aggr {
|
||
|
void addValue(1: i32 value);
|
||
|
list<i32> getValues() throws (1: Error err);
|
||
|
}
|