Breaking out some portions for integration testing.

This commit is contained in:
Micheal Smith
2025-11-10 22:20:09 -06:00
parent 3af95235e6
commit 2da7cc4450
4 changed files with 31 additions and 44 deletions

12
src/lib.rs Normal file
View File

@@ -0,0 +1,12 @@
// Robotnik libraries
pub mod chat;
pub mod event;
pub mod event_manager;
pub mod ipc;
pub mod qna;
pub mod setup;
pub use event::Event;
pub use event_manager::EventManager;
pub use qna::LLMHandle;