mod error;
pub mod execute;
pub mod spec;
pub use error::{CommandError, Result};
pub use execute::{
execute_command_frame, execute_nearest_frame, execute_overlap_frame, run_command, run_nearest,
run_overlap, ExecOptions,
};
pub use spec::{
BinaryInputs, IntervalColumns, IntervalCommandSpec, NearestCommandSpec, OverlapCommandSpec,
StrandConstraint,
};