1#[allow(warnings)]
2#[allow(clippy::all)]
3mod generated {
4 #[path = ""]
5 pub mod ark {
6 #[path = "ark.v1.rs"]
7 pub mod v1;
8 }
9}
10
11pub mod client;
12
13mod error;
14mod types;
15
16pub use client::*;
17pub use error::Error;
18
19#[cfg(feature = "test-utils")]
20pub mod test_utils;