1//! Runtime components for external function execution
2//!
3//! This module provides handlers for external functions like HTTP calls,
4//! AI API calls, system commands, etc.
56pub mod db;
7pub mod external;
8pub mod manager;
910pub use db::*;
11pub use external::*;
12pub use manager::*;