tackler_api/lib.rs
1/*
2 * Tackler-NG 2022-2025
3 * SPDX-License-Identifier: Apache-2.0
4 */
5#![forbid(unsafe_code)]
6#![warn(missing_docs)]
7//! Tackler API components
8
9pub mod metadata;
10
11pub mod filters;
12pub mod location;
13pub mod txn_header;
14pub mod txn_ts;
15
16/// Generic Tackler namespace
17pub mod tackler {
18 /// Generic error type
19 pub type Error = Box<dyn std::error::Error + Send + Sync>;
20}