foundry_common/io/
mod.rs

1//! Utilities for working with standard input, output, and error.
2
3#[macro_use]
4mod macros;
5
6pub mod shell;
7pub mod stdin;
8pub mod style;
9
10#[doc(no_inline)]
11pub use shell::Shell;