botserver/src/lib.rs

37 lines
695 B
Rust
Raw Normal View History

2025-11-22 12:26:16 -03:00
pub mod auth;
pub mod automation;
pub mod basic;
pub mod bootstrap;
pub mod bot;
pub mod channels;
pub mod config;
pub mod context;
2025-11-22 12:26:16 -03:00
pub mod drive;
pub mod drive_monitor;
#[cfg(feature = "email")]
pub mod email;
pub mod file;
pub mod llm;
pub mod llm_models;
pub mod meet;
2025-11-22 12:26:16 -03:00
pub mod nvidia;
pub mod package_manager;
pub mod session;
pub mod shared;
pub mod tests;
2025-11-22 12:26:16 -03:00
pub mod ui_tree;
pub mod web_server;
2025-11-22 12:26:16 -03:00
// Bootstrap progress enum used by UI
#[derive(Debug, Clone)]
pub enum BootstrapProgress {
StartingBootstrap,
InstallingComponent(String),
StartingComponent(String),
UploadingTemplates,
ConnectingDatabase,
StartingLLM,
BootstrapComplete,
BootstrapError(String),
}