nerve/core/traits.rs
1//! Core trait definitions for Nerve Framework
2//!
3//! These traits define the interfaces for all framework components
4//! and enable the plugin system and component abstraction.
5
6#![warn(missing_docs)]
7
8// Re-export all core traits from the nerve-core-traits package
9pub use nerve_core_traits::*;