termcinema-cli 0.1.0

🎬 Animated terminal-to-SVG renderer CLI for the termcinema project
Documentation
//! Entry point for the `termcinema` CLI binary.
//!
//! This file wires together argument parsing and rendering execution.
//! It delegates all logic to the `render` module.

mod args;
mod layout;
mod render;
mod style;
mod utils;

use crate::args::parse_args;
use crate::render::run;

/// Main function for `termcinema`.
///
/// - Parses CLI arguments using `clap`
/// - Runs the rendering pipeline
/// - Reports any top-level errors
fn main() {
    let args = parse_args();
    run(args);
}