feat(m2): register llm module and chat command in lib.rs

This commit is contained in:
pyr0ball 2026-05-19 07:26:31 -07:00
parent 9175b7a247
commit 0e3bfd24f1

View file

@ -1,6 +1,7 @@
mod commands;
mod config;
mod distro;
mod llm;
mod notify;
mod patterns;
mod tray;
@ -76,6 +77,7 @@ pub fn run() {
commands::get_pending_events,
commands::panel_opened,
commands::panel_closed,
commands::chat,
])
.run(tauri::generate_context!())
.expect("error while running Robin");