fix: Update main.rs with proper module declarations
Some checks failed
CI / lint (push) Failing after 3s
CI / build (push) Has been skipped
CI / test (push) Has been skipped

This commit is contained in:
2026-02-01 12:37:39 +00:00
parent 33beac0889
commit b5c381ab71

View File

@@ -1,13 +1,12 @@
use anyhow::Result;
use colored::Colorize;
mod analyzer; mod analyzer;
mod cli; mod cli;
mod generator; mod generator;
mod git; mod git;
mod prompt; mod prompt;
use anyhow::{Context, Result};
use cli::Args; use cli::Args;
use colored::Colorize;
use git::GitRepo; use git::GitRepo;
fn main() -> Result<()> { fn main() -> Result<()> {