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