gorealis/vendor/git.apache.org/thrift.git/contrib/async-test/aggr.thrift
Renan DelValle 03278a882b
Moving from govendor to dep.
Vendor folder has been deleted. Use dep to regenerate vendor folder.
2018-01-02 16:59:08 -08:00

8 lines
134 B
Thrift

exception Error {
1: string desc;
}
service Aggr {
void addValue(1: i32 value);
list<i32> getValues() throws (1: Error err);
}