EasyAlgolia is a Rust crate designed for utilizing the Algolia admin client. It simplifies the process of updating and inserting documents into Algolia's search index.
#[cfg(test)]modtest{useEasyAlgolia::client_builder::ClientBuilder;// Import the ClientBuilder type from the module where it's defined
#[test]fntest_client_builder(){let app_id ="123";let_=ClientBuilder::new().set_api_key(app_id).set_application_id(app_id);// Add assertions or other test logic here
assert!(true)}}