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