sdforge 0.4.1

Multi-protocol SDK framework with unified macro configuration
1
2
3
4
5
6
7
8
9
10
11
// Copyright (c) 2026 Kirky.X
// SPDX-License-Identifier: MIT
//! Domain layer — abstractions consumed by sdforge integrations.
//!
//! Currently houses the [`rate_limiter`](crate::domain::rate_limiter) module
//! defining the \[`ForgeRateLimiter`\] trait used by the trait-kit 0.3
//! `AsyncKit` integration (Phase 5 of `trait-kit-async-integration`).

pub mod rate_limiter;

pub use rate_limiter::{ForgeError, ForgeRateLimiter};