1 2 3 4 5 6 7 8
use anyhow::Result; fn main() -> Result<()> { tokio::runtime::Builder::new_current_thread() .enable_all() .build()? .block_on(remem::hook_cli::run()) }