You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
345 B
Protocol Buffer
25 lines
345 B
Protocol Buffer
syntax = "proto3";
|
|
|
|
package transform;
|
|
|
|
message expandReq {
|
|
string shorten = 1;
|
|
}
|
|
|
|
message expandResp {
|
|
string url = 1;
|
|
}
|
|
|
|
message shortenReq {
|
|
string url = 1;
|
|
}
|
|
|
|
message shortenResp {
|
|
string shorten = 1;
|
|
}
|
|
|
|
service transformer {
|
|
rpc expand(expandReq) returns(expandResp);
|
|
rpc shorten(shortenReq) returns(shortenResp);
|
|
}
|