hertz101/idl/facade/facade.proto
2025-01-20 21:17:47 +08:00

22 lines
277 B
Protocol Buffer

syntax = "proto3";
package frontend;
option go_package = "/facade";
import "api.proto";
service FrontendService {
rpc Login(LoginReq) returns (LoginResp) {}
}
message LoginReq {
string username = 1;
string password = 2;
}
message LoginResp {
string token = 1;
}