iceberg_rest_catalog/
lib.rs

1#![allow(unused_imports)]
2#![allow(clippy::too_many_arguments)]
3
4#[macro_use]
5extern crate serde_derive;
6extern crate reqwest;
7extern crate serde;
8extern crate serde_json;
9extern crate serde_repr;
10extern crate url;
11
12#[allow(clippy::all)]
13pub mod apis;
14pub mod catalog;
15pub mod error;
16#[allow(clippy::all)]
17pub mod models;