mirror of
https://github.com/huggingface/candle.git
synced 2025-06-17 11:08:52 +00:00

- `api::Api` -> `api::tokio::api` (And created new `api::sync::Api`). - Remove `tokio` from all our examples. - Using similar codebase for now instead of ureq (for simplicity).
7 lines
135 B
Rust
7 lines
135 B
Rust
/// The asynchronous version of the API
|
|
#[cfg(feature = "tokio")]
|
|
pub mod tokio;
|
|
|
|
/// The synchronous version of the API
|
|
pub mod sync;
|