* Moving from govendor to dep. * Making the pull request template more friendly. * Fixing akward space in PR template. * goimports run on whole project using ` goimports -w $(find . -type f -name '*.go' -not -path "./vendor/*" -not -path "./gen-go/*")` source of command: https://gist.github.com/bgentry/fd1ffef7dbde01857f66
8 lines
134 B
Thrift
8 lines
134 B
Thrift
exception Error {
|
|
1: string desc;
|
|
}
|
|
|
|
service Aggr {
|
|
void addValue(1: i32 value);
|
|
list<i32> getValues() throws (1: Error err);
|
|
}
|