File tree Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Expand file tree Collapse file tree 1 file changed +0
-8
lines changed Original file line number Diff line number Diff line change @@ -3,10 +3,6 @@ use serde::Deserialize;
3
3
use tokio;
4
4
use indicatif:: ProgressBar ;
5
5
use anyhow:: Result ;
6
- <<<<<<< HEAD
7
-
8
- use rust_xlsxwriter:: * ;
9
- =======
10
6
use rust_xlsxwriter:: * ;
11
7
use clap:: { Parser , Subcommand } ; // Added clap imports
12
8
@@ -29,7 +25,6 @@ enum Commands {
29
25
GenerateMigration ( ExcelToMigrationArgs ) ,
30
26
}
31
27
32
- >>>>>>> master
33
28
34
29
#[ derive( Deserialize , Debug ) ]
35
30
struct Config {
@@ -54,8 +49,6 @@ struct QueryConfig {
54
49
55
50
#[ tokio:: main]
56
51
async fn main ( ) -> Result < ( ) , anyhow:: Error > {
57
- <<<<<<< HEAD
58
- =======
59
52
let cli = Cli :: parse ( ) ;
60
53
61
54
match cli. command {
@@ -73,7 +66,6 @@ async fn main() -> Result<(), anyhow::Error> {
73
66
// --- Existing export logic moved to its own function ---
74
67
async fn run_export ( ) -> Result < ( ) , anyhow:: Error > {
75
68
println ! ( "Running MySQL to Excel export..." ) ;
76
- >>>>>>> master
77
69
let config = load_config ( ) ?;
78
70
79
71
let opts = OptsBuilder :: default ( )
You can’t perform that action at this time.
0 commit comments