privilege/lib.rs
1/// Provides functionality for executing commands with administrative privileges.
2///
3/// This module contains structures and functions that facilitate the execution
4/// of commands with elevated permissions.
5pub mod runas;
6/// Provides functionality for user privileges.
7///
8/// This module contains functions that check user privileges.
9/// It enables checking if the current process has administrative permissions.
10pub mod user;
11
12#[cfg(test)]
13mod tests {}