//! CCGO CLI - A high-performance C++ cross-platform build tool
//!
//! This is the Rust implementation of the ccgo CLI, providing fast startup
//! and native build orchestration with ZERO Python dependency.
//!
//! ## Architecture
//!
//! ```text
//! Rust CLI → build/ modules → CMake/Gradle/Hvigor (direct)
//! ```
use Result;
use Parser;
use Cli;