1#![doc = include_str!("../README.md")] 2 3mod command; 4mod error; 5mod user; 6mod utils; 7 8pub use command::{CommandOutput, run_command_as_user}; 9pub use error::Error; 10pub use user::{DEFAULT_SHELL, create_users}; 11pub use utils::get_command;