2025-11-22 22:55:35 -03:00
|
|
|
pub mod admin;
|
|
|
|
|
pub mod analytics;
|
2025-11-30 12:20:48 -03:00
|
|
|
pub mod branding;
|
2025-11-28 18:15:09 -03:00
|
|
|
pub mod message_types;
|
2025-11-22 22:55:35 -03:00
|
|
|
pub mod models;
|
|
|
|
|
pub mod state;
|
|
|
|
|
pub mod utils;
|
2025-11-30 12:20:48 -03:00
|
|
|
pub mod version;
|
|
|
|
|
|
|
|
|
|
// Re-export commonly used items
|
|
|
|
|
pub use branding::{branding, init_branding, is_white_label, platform_name, platform_short};
|
|
|
|
|
pub use version::{
|
|
|
|
|
get_botserver_version, init_version_registry, register_component, version_string,
|
|
|
|
|
ComponentStatus, ComponentVersion, VersionRegistry, BOTSERVER_VERSION,
|
|
|
|
|
};
|