Browse Source

Removed comments from proto file

ipaddr
Halil İbrahim Kalkan 5 years ago
parent
commit
18bf95416f
  1. 12
      services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/Protos/product.proto

12
services/catalog/src/EShopOnAbp.CatalogService.Application.Contracts/Protos/product.proto

@ -1,21 +1,11 @@
syntax = "proto3";
/* >>
import "google/api/annotations.proto";
<< */
option csharp_namespace = "EShopOnAbp.CatalogService.Grpc";
package CatalogApi;
service ProductPublic {
rpc GetById(ProductRequest) returns (ProductResponse) {
/* >>
option (google.api.http) = {
get: "/api/catalog/product/{id}"
};
<< */
}
rpc GetById(ProductRequest) returns (ProductResponse);
}
message ProductRequest {

Loading…
Cancel
Save