1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#![cfg_attr( test, allow( clippy::expect_used, clippy::indexing_slicing, clippy::panic, clippy::unwrap_used, clippy::unreachable ) )] pub mod client; pub mod completion; pub(crate) mod types; pub use client::{Client, ClientBuilder};