generate facade service

This commit is contained in:
2025-01-20 21:17:47 +08:00
parent 57b1f544d4
commit 98273c7645
38 changed files with 3307 additions and 1 deletions
+21
View File
@@ -0,0 +1,21 @@
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;
}