hoist_client/lib.rs
1//! hoist-client - Azure AI Search REST API client
2//!
3//! This crate provides:
4//! - Authentication handling (Azure CLI, environment variables)
5//! - REST API operations for all resource types
6//! - Response parsing and error handling
7
8pub mod arm;
9pub mod auth;
10pub mod client;
11pub mod error;
12
13pub use arm::ArmClient;
14pub use auth::AuthProvider;
15pub use client::AzureSearchClient;
16pub use error::ClientError;