mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 23:14:37 +00:00
* 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
11 lines
271 B
Rust
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;
|