openai_ng/lib.rs
1#![doc = include_str!(concat!(env!("CARGO_MANIFEST_DIR"), "/README.md"))]
2
3/// authorization module
4pub mod auth;
5
6/// client to execute RESTful API
7pub mod client;
8
9/// error module
10pub mod error;
11
12/// proto module
13pub mod proto;
14#[cfg(test)]
15pub mod tests;
16
17/// convinent prelude to import module
18pub mod prelude {
19 pub use crate::auth::*;
20 pub use crate::client::*;
21 pub use crate::error::*;
22 pub use crate::proto::*;
23}