1 2 3 4 5 6
use anyhow::{Context, Result}; #[tokio::main(flavor = "multi_thread")] async fn main() -> Result<()> { carryover::cli::run().await.context("carryover failed") }