Files
emod-cli/src/main.rs

29 lines
744 B
Rust
Raw Normal View History

2025-11-29 17:31:00 +08:00
mod commands;
mod entity;
mod utils;
mod error;
mod config;
2025-11-29 23:38:03 +08:00
mod template;
2025-11-29 17:31:00 +08:00
use crate::commands::{Cli, Commands};
use clap::Parser;
use std::{env, fs, path::PathBuf};
fn main() {
let cli = Cli::parse();
let temp_dir = check_temp_dir();
match &cli.command {
Commands::Release(args) => commands::release::execute(args),
Commands::Create(args) => commands::create::execute(args, &temp_dir),
Commands::Components(args) => commands::components::execute(args),
}
}
fn check_temp_dir() -> PathBuf {
let mut temp_dir = env::temp_dir();
temp_dir.push("emod-cli");
if let Err(e) = fs::create_dir_all(&temp_dir) {
eprintln!("Error: Failed to create temp directory: {}", e);
}
temp_dir
}