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