check params
CI / changes (push) Successful in 1s
CI / docker-bff (push) Successful in 1s
CI / docker-product (push) Failing after 1s

This commit is contained in:
2026-08-06 22:20:48 +08:00
parent e7e3aa12c3
commit 95d4c7bdc2
11 changed files with 188 additions and 44 deletions
+2 -13
View File
@@ -4,21 +4,10 @@ package product;
option go_package="./product";
import "buf/validate/validate.proto";
import "google/api/annotations.proto";
service Product {
rpc Add(AddReq) returns (AddResp) {
option (google.api.http) = {
post: "/admin/v3/product"
body: "*"
};
}
rpc Edit(EditReq) returns (EditResp) {
option (google.api.http) = {
put: "/admin/v3/product"
body: "*"
};
}
rpc Add(AddReq) returns (AddResp);
rpc Edit(EditReq) returns (EditResp);
}
message AddReq {