Files
openhuman/src-tauri/src/services/quickjs_libs/mod.rs
T
Steven EnamakelandGitHub 4dffd9526e Simplify Conversations to a single default thread (#22)
* refactor: update Conversations component and routing logic

- Replaced the Conversations component rendering in AppRoutes with a redirect to the conversations list.
- Simplified the Conversations component by removing unused imports and state variables.
- Introduced default thread creation logic to ensure a conversation is always available.
- Streamlined the effect hooks for managing thread selection and message fetching.

* refactor: remove TDLib integration and clean up related code

- Eliminated TDLib-related code and comments across multiple files to streamline the project.
- Updated build logic to remove unnecessary checks for TDLib resources.
- Refined comments for clarity regarding background service shutdown and storage mechanisms.
- Adjusted the QuickJS runtime support module to reflect the removal of TDLib integration.

* refactor conversations to single default thread UI
2026-03-26 19:38:51 -07:00

11 lines
271 B
Rust

//! QuickJS Runtime Support Module
//!
//! Provides a QuickJS JavaScript runtime (via rquickjs) for running
//! skill JavaScript code and supporting browser-like shims.
//! environment for skill execution.
pub mod qjs_ops;
pub mod storage;
pub use storage::IdbStorage;