1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//! A Rust client for the Google Gemini API. #![warn(missing_docs)] pub mod client; pub mod config; pub mod errors; pub mod types; #[cfg(test)] mod tests { mod client_tests; mod integration_tests; #[test] fn it_works() { let result = 4; assert_eq!(result, 4); } }