mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 06:32:24 +00:00
- Introduced detailed architecture overview outlining system components and entry points. - Documented state management using Redux Toolkit and Redux-Persist, including store configuration and slice structures. - Described services layer architecture, detailing API client, socket service, and MTProto service functionalities. - Explained the Model Context Protocol (MCP) system, including tool categories and implementation examples. - Outlined routing structure and page components, emphasizing protected and public routes. - Organized reusable components by feature, detailing their structure and usage. - Provided insights into provider management for service lifecycle and shared state. This documentation enhances understanding of the application's structure and improves onboarding for new developers, ensuring clarity in the system's design and functionality.
12 lines
245 B
Rust
12 lines
245 B
Rust
pub mod session_service;
|
|
pub mod socket_service;
|
|
|
|
#[cfg(desktop)]
|
|
pub mod notification_service;
|
|
|
|
pub use session_service::SessionService;
|
|
pub use socket_service::SocketService;
|
|
|
|
#[cfg(desktop)]
|
|
pub use notification_service::NotificationService;
|