Skip to main content

objectiveai_sdk/error/
mod.rs

1//! Error types for the ObjectiveAI SDK.
2
3pub mod request;
4pub mod response;
5mod response_error;
6
7pub use response_error::*;
8
9#[cfg(feature = "http")]
10mod http;
11
12#[cfg(feature = "http")]
13pub use http::*;