rustbricks 0.1.1

Rust-based interface for seamless integration with the Databricks REST API.
Documentation
pub mod config;

pub mod models {
    pub mod cluster_info;
    pub mod sql_statement;

    pub use cluster_info::ClusterInfo;
    pub use sql_statement::{
        ChunkMetadata, ResultData, SqlParameter, SqlStatementRequest, SqlStatementResponse,
    };
}

pub mod services {
    pub mod databricks_session;

    pub use databricks_session::DatabricksSession;
}

pub mod errors {
    mod http;

    pub use http::{ErrorResponse, HttpError};
}