reasonkit/traits/
mod.rs

1//! Core trait definitions for ReasonKit cross-crate integration.
2//!
3//! This module defines the interface contracts between:
4//! - `reasonkit-core` and `reasonkit-mem` (memory/storage operations)
5//! - `reasonkit-core` and `reasonkit-web` (web browsing operations)
6//!
7//! These traits enable parallel development and loose coupling between crates.
8
9mod memory;
10mod web;
11
12pub use memory::*;
13pub use web::*;