16 lines
228 B
Protocol Buffer
16 lines
228 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package vanity;
|
||
|
|
||
|
message VanityRequest {
|
||
|
string pattern = 1;
|
||
|
}
|
||
|
|
||
|
message VanityResponse {
|
||
|
string result = 1;
|
||
|
}
|
||
|
|
||
|
service VanityService {
|
||
|
rpc RequestVanity(VanityRequest) returns (VanityResponse);
|
||
|
}
|