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 reports;
14pub mod txn_header;
15pub mod txn_ts;
16
17/// Generic Tackler namespace
18pub mod tackler {
19 /// Generic error type
20 pub type Error = Box<dyn std::error::Error + Send + Sync>;
21}