| 10 | using namespace aimrt::runtime::python_runtime; |
| 11 | |
| 12 | PYBIND11_MODULE(aimrt_python_runtime_ros2, m) { |
| 13 | m.doc() = "AimRT Python support for ROS2 interface"; |
| 14 | |
| 15 | // type support |
| 16 | ExportRos2TypeSupport(m); |
| 17 | |
| 18 | // channel |
| 19 | ExportRos2PublisherFunc(m); |
| 20 | ExportRos2SubscribeFunc(m); |
| 21 | |
| 22 | // rpc |
| 23 | ExportRos2RpcServiceFunc(m); |
| 24 | ExportRos2ClientFunc(m); |
| 25 | } |
nothing calls this directly
no test coverage detected