Add generaton cli entrypoint
This commit is contained in:
4
example/client.py
Normal file
4
example/client.py
Normal file
@ -0,0 +1,4 @@
|
||||
"""Echo client."""
|
||||
|
||||
if __name__ == "__main__":
|
||||
pass
|
9
example/schema.proto
Normal file
9
example/schema.proto
Normal file
@ -0,0 +1,9 @@
|
||||
syntax = "proto2";
|
||||
|
||||
message EchoMsg {
|
||||
required string value = 1;
|
||||
}
|
||||
|
||||
service Example {
|
||||
rpc Echo (EchoMsg) returns (EchoMsg) {}
|
||||
}
|
4
example/server.py
Normal file
4
example/server.py
Normal file
@ -0,0 +1,4 @@
|
||||
"""Echo server."""
|
||||
|
||||
if __name__ == "__main__":
|
||||
pass
|
Reference in New Issue
Block a user