Skip to content

Commit

Permalink
refactor: reorganize imports in dump_sync.rs for clarity and consistency
Browse files Browse the repository at this point in the history
  • Loading branch information
Kremilly committed Dec 5, 2024
1 parent 37e0aea commit 997ce0f
Showing 1 changed file with 7 additions and 10 deletions.
17 changes: 7 additions & 10 deletions src/dump_sync.rs
Original file line number Diff line number Diff line change
@@ -1,24 +1,21 @@
use clap::Parser;
use std::error::Error;

use reqwest;
use tokio::fs::File;
use tokio::io::AsyncWriteExt;

use std::error::Error;
use tokio::{
fs::File,
io::AsyncWriteExt,
};

use crate::{
args_cli::*,

ui::ui_base::UI,
helpers::env::Env,
engine::dump::Dump,
consts::global::Global,
ui::success_alerts::SuccessAlerts,

args_cli::{
Cli,
Commands,
ExportOptions,
ImportOptions,
},
};

pub struct DumpSync;
Expand Down

0 comments on commit 997ce0f

Please sign in to comment.