fixed formatting

This commit is contained in:
glitchySid
2025-12-30 02:10:00 +05:30
parent 33784d8f1d
commit 2211057e4f
14 changed files with 55 additions and 58 deletions

View File

@@ -1,14 +1,10 @@
use colored::*;
use crate::models::OrganizationPlan;
use crate::storage::UndoLog;
use colored::*;
use std::io;
use std::{ffi::OsStr, fs, path::Path};
pub fn execute_move(
base_path: &Path,
plan: OrganizationPlan,
mut undo_log: Option<&mut UndoLog>,
) {
pub fn execute_move(base_path: &Path, plan: OrganizationPlan, mut undo_log: Option<&mut UndoLog>) {
println!("\n{}", "--- EXECUTION PLAN ---".bold().underline());
if plan.files.is_empty() {

View File

@@ -1,5 +1,5 @@
use colored::*;
use crate::storage::UndoLog;
use colored::*;
use std::fs;
use std::io;
use std::path::Path;