//! BalancedBreakfast Core //! //! Central crate containing the orchestrator (feed refresh scheduling and //! lifecycle management) and the Rhai-based plugin system. The orchestrator //! coordinates plugins, the database, and the feed generator; the plugin //! manager handles loading, configuration, and sandboxed script execution. pub mod crypto; pub mod orchestrator; pub mod plugin_manager; pub mod rhai_plugin; pub mod scheduler; pub mod url_cleaner; pub use orchestrator::*; pub use plugin_manager::*; pub use rhai_plugin::{ classify_error, ReaderResult, RhaiPlugin, RhaiPluginError, RhaiPluginManager, };