mirror of
https://github.com/valitydev/damsel.git
synced 2024-11-07 02:05:18 +00:00
14 lines
222 B
Thrift
14 lines
222 B
Thrift
/*
|
|
* Definitions of trivial services serving test purposes only.
|
|
*/
|
|
|
|
include "base.thrift"
|
|
|
|
struct Shout {
|
|
1: required string contents;
|
|
}
|
|
|
|
service Echo {
|
|
Shout echo (1: Shout shout) throws (1: base.Failure ex)
|
|
}
|