1 2 3 4 5 6 7 8 9 10 11 12 13 14 15
use cargo_tsgen::{ cli::{Cli, Command}, error::Error, }; use std::process::ExitCode; // ------------------------------------------------------------------------------------------------ // Main Function // ------------------------------------------------------------------------------------------------ fn main() -> Result<ExitCode, Error> { let args = Cli::parse_args(); args.execute() }