gemini_rust/batch/mod.rs
1#![allow(deprecated)]
2
3use snafu::Snafu;
4
5pub mod builder;
6pub use builder::BatchBuilder;
7pub mod handle;
8pub use handle::*;
9pub mod model;
10
11#[derive(Debug, Snafu)]
12pub enum Error {
13 Client { source: crate::client::Error },
14 File { source: crate::files::Error },
15 Serialize { source: serde_json::Error },
16}