baizekit-cli 0.1.27

BaizeKit Generator
Documentation
use clap::{Args, Subcommand};

mod crates;
mod entity;

#[derive(Debug, Subcommand)]
pub enum GenerateSubCommand {
    /// 生成服务代码. 包含 core、sdk
    Crates(crates::GenerateCratesCommand),
    /// 生成实体代码. 包含 domain、db、service
    Entity(entity::GenerateEntityCommand),
}

#[derive(Debug, Args)]
pub struct Generate {
    #[command(subcommand)]
    pub command: GenerateSubCommand,
}

impl Generate {
    pub fn run(self) -> anyhow::Result<()> {
        match self.command {
            GenerateSubCommand::Crates(cmd) => cmd.run(),
            GenerateSubCommand::Entity(cmd) => cmd.run(),
        }
    }
}