mirror of
https://github.com/zeromicro/go-zero.git
synced 2025-01-26 11:28:46 +08:00
16 lines
213 B
Protocol Buffer
16 lines
213 B
Protocol Buffer
|
syntax = "proto3";
|
||
|
|
||
|
package portal;
|
||
|
|
||
|
message PortalRequest {
|
||
|
string name = 1;
|
||
|
}
|
||
|
|
||
|
message PortalResponse {
|
||
|
string response = 1;
|
||
|
}
|
||
|
|
||
|
service Portal {
|
||
|
rpc Portal(PortalRequest) returns (PortalResponse);
|
||
|
}
|