From b5c381ab71d48c66f9d6516aecf8fcc13ad7395b Mon Sep 17 00:00:00 2001 From: 7000pctAUTO Date: Sun, 1 Feb 2026 12:37:39 +0000 Subject: [PATCH] fix: Update main.rs with proper module declarations --- src/main.rs | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/src/main.rs b/src/main.rs index 169e678..a0d60d3 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,13 +1,12 @@ -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<()> {