Commit 8a03e70e authored by Muhammad Hamza's avatar Muhammad Hamza
Browse files

fix errors in AppSupport proto3 services

parent c2cf4e4f
Loading
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -30,7 +30,7 @@ Below are some usage examples for Go and Ruby. For other languages, please refer
   - Models:
  
        ```sh
        $ python3 -m grpc_tools.protoc -I./AppSupport/proto3 --python_out=./python-stubs ./AppSupport/proto3/models/*
        $ python -m grpc_tools.protoc -I./AppSupport/proto3 --python_out=./python-stubs ./AppSupport/proto3/models/*
        ```
    
        The above command will generate .py files for all the data models in the ./models directory
@@ -38,7 +38,7 @@ Below are some usage examples for Go and Ruby. For other languages, please refer
   - Services:

        ```sh
        $ python3 -m grpc_tools.protoc -I./AppSupport/proto3 --python_out=./python-stubs --grpc_python_out=./python-stubs .AppSupport/proto3/services/*
        $ python -m grpc_tools.protoc -I./AppSupport/proto3 --python_out=./python-stubs --grpc_python_out=./python-stubs ./AppSupport/proto3/services/*
        ```

        The above command will generate two files for the each Application Support services:
+0 −1
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@ syntax = "proto3";

package mec011.services.appdnsrulesservice;

import "google/protobuf/empty.proto";
import public "models/dns_rule.proto";
import public "models/problem_details.proto";
// import public "models/todo_object_mapping.proto";
+0 −1
Original line number Diff line number Diff line
@@ -14,7 +14,6 @@ syntax = "proto3";

package mec011.services.apptrafficrulesservice;

import "google/protobuf/empty.proto";
import public "models/problem_details.proto";
// import public "models/todo_object_mapping.proto";
import public "models/traffic_rule.proto";