1//! Thin wrappers around the [ROBOT](https://github.com/ontodev/robot) CLI. 2 3mod error; 4mod runner; 5 6pub use error::{Result, RobotError}; 7pub use runner::{detect_robot, robot_merge, robot_report, robot_validate, run_robot, RobotOutput};