Apply consistent formatting with cargo-fmt

This commit is contained in:
Anthony Oteri
2023-09-13 21:45:37 -04:00
parent 74b2f87e51
commit 957b0bb2cc
5 changed files with 17 additions and 15 deletions
+2 -2
View File
@@ -1,11 +1,11 @@
use crate::cli::Cli;
use crate::cli::Commands;
use crate::config::Config;
use crate::error::ConfigError;
use crate::error::DredgeError;
use clap::Parser;
use std::ffi::OsString;
use std::path::PathBuf;
use crate::cli::Commands;
pub(crate) mod cli;
mod commands;
@@ -90,4 +90,4 @@ async fn main() -> Result<(), DredgeError> {
}
Ok(())
}
}