nushell/crates/nu-command/src/experimental/mod.rs
pwygab b8d253cbd7
Attempts to add a command that checks if nushell is running with admin priveleges (#5712)
* attempts to add is-admin command

* fmt and clippy

* fmt

* Update is_admin.rs

* typos

* typo in example
2022-06-06 06:55:23 -05:00

6 lines
92 B
Rust

mod is_admin;
mod view_source;
pub use is_admin::IsAdmin;
pub use view_source::ViewSource;