Fix up empty proto
This commit is contained in:
@@ -27,7 +27,7 @@ message SlamScan{
|
|||||||
}
|
}
|
||||||
|
|
||||||
service SlamControl {
|
service SlamControl {
|
||||||
rpc start_map_streaming(SlamDetails) returns (persontracking.Empty) {}
|
rpc start_map_streaming(SlamDetails) returns (Empty) {}
|
||||||
|
|
||||||
rpc stop_streaming(persontracking.Empty) returns (persontracking.Empty) {}
|
rpc stop_streaming(Empty) returns (Empty) {}
|
||||||
}
|
}
|
||||||
@@ -1,7 +1,5 @@
|
|||||||
syntax = "proto3";
|
syntax = "proto3";
|
||||||
|
|
||||||
package persontracking;
|
|
||||||
|
|
||||||
option java_multiple_files = true;
|
option java_multiple_files = true;
|
||||||
option java_package = "com.example.carcontroller";
|
option java_package = "com.example.carcontroller";
|
||||||
option java_outer_classname = "EmptyProto";
|
option java_outer_classname = "EmptyProto";
|
||||||
@@ -23,9 +23,9 @@ message PointScan{
|
|||||||
}
|
}
|
||||||
|
|
||||||
service PersonTracking{
|
service PersonTracking{
|
||||||
rpc set_tracking_group(Int32Value) returns (persontracking.Empty) {}
|
rpc set_tracking_group(Int32Value) returns (Empty) {}
|
||||||
|
|
||||||
rpc stop_tracking(persontracking.Empty) returns (persontracking.Empty) {}
|
rpc stop_tracking(Empty) returns (Empty) {}
|
||||||
|
|
||||||
rpc get_scan_data(persontracking.Empty) returns (PointScan) {}
|
rpc get_scan_data(Empty) returns (PointScan) {}
|
||||||
}
|
}
|
||||||
Reference in New Issue
Block a user