Adds a new "Quick Messages" settings page below Experts for managing reusable title/content snippets, backed by SQLite via SeaORM and exposed through both Tauri commands and the Axum web router. The list supports drag-to-reorder using the same motion/react Reorder pattern as the agent list, with translations provided across all 10 supported locales.
19 lines
400 B
Rust
19 lines
400 B
Rust
pub mod acp;
|
|
pub mod chat_channel;
|
|
pub mod conversations;
|
|
pub mod experts;
|
|
pub mod folder_commands;
|
|
pub mod folders;
|
|
pub mod mcp;
|
|
pub mod model_provider;
|
|
#[cfg(feature = "tauri-runtime")]
|
|
pub mod notification;
|
|
pub mod project_boot;
|
|
pub mod quick_messages;
|
|
pub mod system_settings;
|
|
pub mod terminal;
|
|
pub mod version_control;
|
|
#[cfg(feature = "tauri-runtime")]
|
|
pub mod windows;
|
|
pub mod workspace_state;
|