mirror of
https://github.com/kevin-DL/services.git
synced 2026-01-14 20:14:47 +00:00
[WIP] Moving test services to this repo
This commit is contained in:
17
example/proto/example.proto
Normal file
17
example/proto/example.proto
Normal file
@@ -0,0 +1,17 @@
|
||||
syntax = "proto3";
|
||||
|
||||
package srv.test_example;
|
||||
|
||||
service Example {
|
||||
rpc Call(Request) returns (Response) {}
|
||||
}
|
||||
|
||||
message Request {
|
||||
string name = 1;
|
||||
bool caps = 2;
|
||||
int64 number = 3;
|
||||
}
|
||||
|
||||
message Response {
|
||||
string msg = 1;
|
||||
}
|
||||
Reference in New Issue
Block a user