소스 검색

修复DeliveryService Proto

世祺 1 년 전
부모
커밋
90ba9c57e0
1개의 변경된 파일6개의 추가작업 그리고 6개의 파일을 삭제
  1. 6 6
      llnw.proto

+ 6 - 6
llnw.proto

@@ -1,12 +1,12 @@
 syntax = "proto3";
 package llnwApi.Delivery;
 service DeliveryService {
-  rpc ListDelivery(ShortNameRequest)returns(DeliveryList);
-  rpc ValidateDelivery(DeliveryRequest)returns(DeliveryEntity);
-  rpc CreateDelivery(DeliveryRequest)returns(DeliveryEntity);
-  rpc GetDelivery(IdRequest)returns(DeliveryEntity);
-  rpc UpdateDelivery(DeliveryRequest)returns(DeliveryEntity);
-  rpc DeleteDelivery(IdRequest)returns(DeliveryEntity);
+  rpc ListDelivery(ShortNameRequest)returns(DeliveryList){};
+  rpc ValidateDelivery(DeliveryRequest)returns(DeliveryEntity){};
+  rpc CreateDelivery(DeliveryRequest)returns(DeliveryEntity){};
+  rpc GetDelivery(IdRequest)returns(DeliveryEntity){};
+  rpc UpdateDelivery(DeliveryRequest)returns(DeliveryEntity){};
+  rpc DeleteDelivery(IdRequest)returns(DeliveryEntity){};
 }
 message Base{
   string username = 1;