1 2 3 4 5 6 7 8 9
//! Main entry point for the cargo-script CLI tool. //! //! This module initializes and runs the CLI using the `cargo-script` library. use cargo_run::start; /// Main function that runs the CLI tool. fn main() { start::run(); }