change-user-run 0.1.2

Run commands as other users and create users
Documentation
1
2
3
4
5
6
7
8
9
10
11
#![doc = include_str!("../README.md")]

mod command;
mod error;
mod user;
mod utils;

pub use command::{CommandOutput, run_command_as_user};
pub use error::Error;
pub use user::{DEFAULT_SHELL, create_users};
pub use utils::get_command;