mofa_kernel/lib.rs
1// context module
2pub mod context;
3
4// plugin module
5pub mod plugin;
6pub use plugin::*;
7
8// bus module
9pub mod bus;
10pub use bus::*;
11
12// logging module
13pub mod logging;
14
15// error module
16pub mod error;
17
18// core module
19pub mod core;
20pub use core::*;
21
22// message module
23pub mod message;
24
25// Agent Framework (统一 Agent 框架)
26pub mod agent;
27
28// Global Configuration System (全局配置系统)
29#[cfg(feature = "config")]
30pub mod config;
31#[cfg(feature = "config")]
32pub use config::*;
33
34// Storage traits (存储接口)
35pub mod storage;
36pub use storage::Storage;
37
38// Workflow traits (工作流接口)
39pub mod workflow;
40pub use workflow::*;