syntax = "proto3"; // 标的物抽取 package proto; option go_package = "/proto"; message GoodsRequest{ string contents = 1; } message GoodsResponse{ string Goods = 1; } service GoodsExtract{ rpc GoodsExtract(GoodsRequest) returns (GoodsResponse); }