Minor changes to unlink applet

This commit is contained in:
Nathan Fisher 2023-01-15 09:22:02 -05:00
parent c6e162ebc8
commit 9ddebe1873
2 changed files with 6 additions and 6 deletions

View File

@ -43,10 +43,10 @@ mod yes;
#[allow(clippy::module_name_repetitions)] #[allow(clippy::module_name_repetitions)]
pub use { pub use {
self::hostname::Hostname, base32::Base32, base64::Base64, basename::Basename, self::hostname::Hostname, self::shitbox::Shitbox, base32::Base32, base64::Base64,
bootstrap::Bootstrap, clear::Clear, cut::Cut, dirname::Dirname, echo::Echo, factor::Factor, basename::Basename, bootstrap::Bootstrap, clear::Clear, cut::Cut, dirname::Dirname, echo::Echo,
fold::Fold, groups::Groups, head::Head, link::Link, mountpoint::Mountpoint, nologin::Nologin, factor::Factor, fold::Fold, groups::Groups, head::Head, link::Link, mountpoint::Mountpoint,
nproc::Nproc, r#false::False, r#true::True, rev::Rev, shitbox::Shitbox, sleep::Sleep, nologin::Nologin, nproc::Nproc, r#false::False, r#true::True, rev::Rev, sleep::Sleep,
sync::Sync as SyncCmd, unlink::Unlink, which::Which, whoami::Whoami, yes::Yes, sync::Sync as SyncCmd, unlink::Unlink, which::Which, whoami::Whoami, yes::Yes,
}; };

View File

@ -1,6 +1,6 @@
use clap::{Arg, ArgAction, Command};
use std::{io, ffi::CString, process};
use super::Cmd; use super::Cmd;
use clap::{Arg, ArgAction, Command};
use std::{ffi::CString, io, process};
#[derive(Debug, Default)] #[derive(Debug, Default)]
pub struct Unlink; pub struct Unlink;