minicrossterm/src/utils.rs

11 lines
228 B
Rust

//! # Utils
pub use self::command::{Command, ExecutableCommand, Output, QueueableCommand};
pub use self::error::{ErrorKind, Result};
mod command;
mod error;
pub(crate) mod functions;
pub(crate) mod macros;
pub(crate) mod sys;