strixonomy_robot/lib.rs
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::{
8 detect_robot, robot_convert, robot_merge, robot_report, robot_validate, run_robot, RobotOutput,
9 DEFAULT_ROBOT_TIMEOUT_SECS, MAX_STDIO_BYTES,
10};