Browse Source

修复DeliveryService Proto

世祺 1 năm trước cách đây
mục cha
commit
90ba9c57e0
1 tập tin đã thay đổi với 6 bổ sung6 xóa
  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;