1//! # `ts-terminal` 2//! 3//! Helpers for creating my CLIs 4 5extern crate alloc; 6 7mod action; 8mod child_command; 9 10pub use action::{Action, ActionResult}; 11pub use child_command::{ChildCommandError, process_using_child};