Skip to main content

Mountain/ApplicationState/State/ExtensionState/
mod.rs

1#![allow(non_snake_case)]
2
3//! Extension-related state. Three sub-stores (`ExtensionRegistry`,
4//! `ProviderRegistration`, `ScannedExtensions`) plus the composite `State`
5//! struct. Callers spell the full sub-path.
6
7pub mod ExtensionRegistry;
8pub mod ProviderRegistration;
9pub mod ScannedExtensions;
10pub mod State;