brisk_common_components/
lib.rs

1#![doc = include_str!("../README.MD")]
2#![warn(missing_docs)]
3
4use lazy_static::lazy_static;
5
6mod control;
7
8lazy_static! {
9    /// Manager for the `ègui` component. Can be merged into an other manager for extensions.
10    pub static ref MANAGER: brisk_it::generator::Manager = {
11        let manager = brisk_it::generator::ManagerBuilder::new()
12        .create::<control::Match>("Match")
13        .create::<control::Repeater>("Repeater");
14
15        manager.into()
16    };
17}