16 lines
228 B
Protocol Buffer
Raw Permalink Normal View History

2022-10-21 15:09:22 +08:00
syntax = "proto3";
package vanity;
message VanityRequest {
string pattern = 1;
}
message VanityResponse {
string result = 1;
}
service VanityService {
rpc RequestVanity(VanityRequest) returns (VanityResponse);
}