Skip to content

Commit 752b902

Browse files
author
tider
committed
t
1 parent e7b3d71 commit 752b902

File tree

1 file changed

+0
-8
lines changed

1 file changed

+0
-8
lines changed

src/main.rs

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -3,10 +3,6 @@ use serde::Deserialize;
33
use tokio;
44
use indicatif::ProgressBar;
55
use anyhow::Result;
6-
<<<<<<< HEAD
7-
8-
use rust_xlsxwriter::*;
9-
=======
106
use rust_xlsxwriter::*;
117
use clap::{Parser, Subcommand}; // Added clap imports
128

@@ -29,7 +25,6 @@ enum Commands {
2925
GenerateMigration(ExcelToMigrationArgs),
3026
}
3127

32-
>>>>>>> master
3328

3429
#[derive(Deserialize, Debug)]
3530
struct Config {
@@ -54,8 +49,6 @@ struct QueryConfig {
5449

5550
#[tokio::main]
5651
async fn main() -> Result<(), anyhow::Error> {
57-
<<<<<<< HEAD
58-
=======
5952
let cli = Cli::parse();
6053

6154
match cli.command {
@@ -73,7 +66,6 @@ async fn main() -> Result<(), anyhow::Error> {
7366
// --- Existing export logic moved to its own function ---
7467
async fn run_export() -> Result<(), anyhow::Error> {
7568
println!("Running MySQL to Excel export...");
76-
>>>>>>> master
7769
let config = load_config()?;
7870

7971
let opts = OptsBuilder::default()

0 commit comments

Comments
 (0)