use serde::Serialize;
mod account;
mod block;
mod geocode;
mod hotspot;
mod oracle;
mod oui;
pub mod transactions;
mod validator;
mod values;
pub use account::*;
pub use block::*;
pub use geocode::*;
pub use hotspot::*;
pub use oracle::*;
pub use oui::*;
pub use validator::*;
pub use values::*;
#[derive(Clone, Debug, Serialize)]
pub struct QueryTimeRange {
pub min_time: String,
pub max_time: String,
}