Mountain/Binary/Extension/mod.rs
1
2//! # Binary::Extension
3//!
4//! Extension startup utilities called from `Binary::Main::AppLifecycle`.
5//! Configures extension scan paths and populates the initial extension
6//! registry before the workbench finishes loading.
7
8/// Resolve and register the extension scan-path list from config and defaults.
9pub mod ScanPathConfigure;
10
11/// Walk the scan paths, parse manifests, and populate the extension registry.
12pub mod ExtensionPopulate;