EasyAlgolia 1.0.4

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.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#[cfg(test)]
mod test {
    use EasyAlgolia::client_builder::ClientBuilder;
    // Import the ClientBuilder type from the module where it's defined

    #[test]
    fn test_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)
    }
}