deepseek_api/
lib.rs

1mod client_builder;
2mod error;
3pub mod request;
4mod request_builder;
5pub mod response;
6pub use client_builder::*;
7pub use error::*;
8pub use request_builder::*;
9
10cfg_if::cfg_if! {
11    if #[cfg(feature = "is_sync")] {
12        mod sync_impl;
13
14        pub use sync_impl::json_stream;
15        pub use sync_impl::client::*;
16    } else {
17        mod async_impl;
18
19        pub use async_impl::json_stream;
20        pub use async_impl::client::*;
21    }
22}