ricecoder 0.1.72

Terminal-first, spec-driven coding assistant that understands your project before generating code
Documentation
// Review code

use super::Command;
use crate::error::CliResult;

/// Review code
pub struct ReviewCommand {
    pub file: String,
}

impl ReviewCommand {
    pub fn new(file: String) -> Self {
        Self { file }
    }
}

impl Command for ReviewCommand {
    fn execute(&self) -> CliResult<()> {
        println!("Reviewing: {}", self.file);
        println!("✓ Review complete");
        Ok(())
    }
}