2025-03-12 14:05:38 +00:00
|
|
|
syntax = "proto3";
|
|
|
|
|
|
|
|
package product;
|
|
|
|
option go_package="./product";
|
|
|
|
|
2025-04-06 02:08:46 +00:00
|
|
|
|
|
|
|
// OKResp
|
|
|
|
message OKResp {}
|
|
|
|
// NoneReq
|
|
|
|
message NoneReq {}
|
|
|
|
|
|
|
|
message CreateCategoryReq {
|
|
|
|
string name = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
service Product {
|
|
|
|
// CreateCategory 建立 product 分類
|
|
|
|
rpc CreateCategory(CreateCategoryReq) returns(OKResp);
|
|
|
|
}
|