From 58ff331af30c1077021fa0db21932c8e26fdf268 Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 12:34:53 +0000 Subject: [PATCH] fix: Simplify main.rs to ensure proper module integration --- src/main.rs | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/main.rs b/src/main.rs index a0d60d3..169e678 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,12 +1,13 @@ +use anyhow::Result; +use colored::Colorize; + mod analyzer; mod cli; mod generator; mod git; mod prompt; -use anyhow::{Context, Result}; use cli::Args; -use colored::Colorize; use git::GitRepo; fn main() -> Result<()> {