Codebase list golang-github-go-kit-kit / 51ccc66 examples / addsvc / thrift / addsvc.thrift
51ccc66

Tree @51ccc66 (Download .tar.gz)

addsvc.thrift @51ccc66raw · history · blame

struct SumReply {
	1: i64 value
}

struct ConcatReply {
	1: string value
}

service AddService {
	SumReply Sum(1: i64 a, 2: i64 b)
	ConcatReply Concat(1: string a, 2: string b)
}