Skip to main content

iota_data_ingestion_core/reader/
mod.rs

1// Copyright (c) 2025 IOTA Stiftung
2// SPDX-License-Identifier: Apache-2.0
3
4//! Types and utilities for fetching checkpoints from local and remote sources.
5
6pub(crate) mod common;
7pub mod config;
8pub(crate) mod fetch;
9pub mod filters;
10pub mod v2;
11
12pub use common::ReaderOptions;