1 2 3 4 5 6 7 8 9 10 11 12
//! # Main entry point for the application //! //! ```shell //! cors-proxy //! ``` //! //! Options are available in [`crate::cli::CliOptions`] #[tokio::main] async fn main() -> Result<(), std::io::Error> { cors_proxy::cli_main().await }