chore: cargo fmt

This commit is contained in:
2025-08-23 15:48:21 -04:00
parent c805d7e018
commit 6c92dd24f7
10 changed files with 29 additions and 22 deletions

View File

@@ -159,11 +159,7 @@ impl SshOPNSenseShell {
wait_for_completion(&mut channel).await
}
async fn ensure_remote_dir_exists(
&self,
sftp: &SftpSession,
path: &str,
) -> Result<(), Error> {
async fn ensure_remote_dir_exists(&self, sftp: &SftpSession, path: &str) -> Result<(), Error> {
if !sftp.try_exists(path).await? {
info!("Creating remote directory {path}");
sftp.create_dir(path).await?;