| 90 | }; // class SleepActionServer |
| 91 | |
| 92 | int main(int argc, char** argv) |
| 93 | { |
| 94 | rclcpp::init(argc, argv); |
| 95 | auto node = std::make_shared<SleepActionServer>(); |
| 96 | |
| 97 | rclcpp::spin(node); |
| 98 | |
| 99 | return 0; |
| 100 | } |
nothing calls this directly
no outgoing calls
no test coverage detected