feat: user base

This commit is contained in:
zzw
2026-08-13 15:43:03 +08:00
parent fd34f43ed5
commit d65eb9f55f
12 changed files with 1157 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
syntax = "proto3";
package user;
option go_package="./user";
import "google/api/annotations.proto";
service User {
rpc Create(CreateReq) returns (Response) {
option (google.api.http) = {
post: "/customer/v3/login"
body: "*"
};
}
rpc Register(RegisterReq) returns (Response) {
option (google.api.http) = {
post: "/customer/v3/register"
body: "*"
};
}
}