thegarii/
lib.rs

1// Copyright 2021 ChainSafe Systems
2// SPDX-License-Identifier: LGPL-3.0-only
3
4//! the garii project
5//!
6//! this library fetches blocks from Arweave and generates firehose blocks for the Graph
7pub mod client;
8pub mod cmd;
9mod encoding;
10pub mod env;
11pub mod pb;
12mod polling;
13pub mod result;
14pub mod types;
15
16pub use self::{
17    client::Client,
18    cmd::Opt,
19    env::{Env, EnvArguments},
20    result::{Error, Result},
21};