getgoods.proto 260 B

12345678910111213141516
  1. syntax = "proto3";
  2. // 标的物抽取
  3. package proto;
  4. option go_package = "/proto";
  5. message GoodsRequest{
  6. string contents = 1;
  7. }
  8. message GoodsResponse{
  9. string Goods = 1;
  10. }
  11. service GoodsExtract{
  12. rpc GoodsExtract(GoodsRequest) returns (GoodsResponse);
  13. }