#[tokio::main] async fn main() -> Result<(), Box> { let client = minimeili::Client::from_env(); client .delete_all_documents("names") .await? .wait_until_stopped(&client) .await?; Ok(()) }