max / balanced_breakfast
| 1 | //! BalancedBreakfast Interface |
| 2 | //! |
| 3 | //! Shared types and traits for the plugin system. |
| 4 | //! |
| 5 | //! This crate defines the types that Rhai plugins work with. |
| 6 | //! All types use standard Rust types (String, Vec, Option) for simplicity. |
| 7 | |
| 8 | |
| 9 | |
| 10 | |
| 11 | |
| 12 | pub use |
| 13 | Busser, BusserCapabilities, BusserConfig, ConfigField, ConfigFieldType, ConfigSchema, |
| 14 | DEFAULT_FETCH_INTERVAL_SECS, |
| 15 | ; |
| 16 | pub use *; |
| 17 | pub use *; |
| 18 |