ferro-json-ui 0.2.9

JSON-based server-driven UI schema types for Ferro
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Built-in plugin components for JSON-UI.
//!
//! Provides the Map plugin and a registration function that adds all
//! built-in plugins to the global `PluginRegistry`.

pub mod map;

pub use map::MapPlugin;

/// Register all built-in plugins into the global registry.
///
/// Called during `PluginRegistry` global initialization so built-in
/// plugins are always available without explicit user registration.
pub fn register_built_in_plugins() {
    crate::plugin::register_plugin(MapPlugin);
}