iotics_grpc_client/lib.rs
1// allowed for now because of https://github.com/tokio-rs/prost/issues/332
2#![allow(clippy::derive_partial_eq_without_eq)]
3
4mod auth_builder;
5mod channel;
6mod common;
7mod helpers;
8
9include!(concat!(env!("OUT_DIR"), "/client/mod.rs"));
10
11pub mod host;
12pub mod input;
13pub mod interest;
14pub mod properties;
15pub mod search;
16pub mod twin;
17
18// re-export everything from `auth_builder`, `channel` and `common` in the root of the crate
19pub use auth_builder::*;
20pub use channel::*;
21pub use common::*;