gprobe 0.1.2

A verbose CLI to probe go-ethereum data structures.
Documentation
#![doc = include_str!("../README.md")]
#![allow(dead_code)]
#![allow(clippy::enum_variant_names)]
#![warn(missing_docs)]
#![warn(unused_extern_crates)]
#![forbid(unsafe_code)]
#![forbid(where_clauses_object_safety)]
#![allow(deprecated)]

//! # GProbe
//!
//! GProbe is a tool for probing the data source and generating a schema for it.
//!
//! ## Usage
//!
//! // TODO:

/// Cli Args
pub mod cli;

/// Module wrapping database utilities
pub mod db;

/// Telemetry
pub mod telemetry;

/// The core [crate::cli::GProbe] runner
pub mod runner;

/// The tree dispatch
pub mod tree;

/// The create dispatch
pub mod create;

/// Utilities
pub mod utils;

/// A group of handlers for the [crate::runner] module to dispatch
pub mod handlers {
    pub use super::create::*;
    /// The [crate::handlers::tree] handler
    pub use super::tree::*;
}