mofa-kernel 0.1.1

MoFA Kernel - Core runtime and microkernel implementation
Documentation
// context module
pub mod context;

// plugin module
pub mod plugin;
pub use plugin::*;

// bus module
pub mod bus;
pub use bus::*;

// logging module
pub mod logging;

// error module
pub mod error;

// core module
pub mod core;
pub use core::*;

// message module
pub mod message;

// Agent Framework (统一 Agent 框架)
pub mod agent;

// Global Configuration System (全局配置系统)
#[cfg(feature = "config")]
pub mod config;
#[cfg(feature = "config")]
pub use config::*;

// Storage traits (存储接口)
pub mod storage;
pub use storage::Storage;

// Workflow traits (工作流接口)
pub mod workflow;
pub use workflow::*;