1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#![doc = include_str!("../README.md")]

pub mod app;
pub mod collector;
pub mod error;
pub mod manager;
pub mod types;

pub use app::App;
pub use collector::Collector;
pub use error::Error;
pub use manager::Manager;
pub use types::{process::Process, runner::Runner};

/// The Result used throughout the indexer
type Result<T> = std::result::Result<T, error::Error>;

#[derive(Debug)]
pub enum SupportedChains {
    Ethereum,
}